add purescript-bridge

This commit is contained in:
Hongrui Fang 2022-05-13 16:39:12 +08:00
parent 64ac81bc7d
commit b8908dc6c9
No known key found for this signature in database
GPG key ID: 1C4711FFF64C0254
2 changed files with 1516 additions and 2 deletions

1507
flake.lock generated

File diff suppressed because it is too large Load diff

View file

@ -28,7 +28,9 @@
inputs.apropos.inputs.nixpkgs.follows =
"plutarch/haskell-nix/nixpkgs-unstable";
outputs = inputs@{ self, nixpkgs, haskell-nix, plutarch, ... }:
inputs.purescript-bridge.url = "github:mlabs-haskell/purescript-bridge";
outputs = inputs@{ self, nixpkgs, haskell-nix, plutarch, purescript-bridge, ... }:
let
supportedSystems = with nixpkgs.lib.systems.supported;
tier1 ++ tier2 ++ tier3;
@ -77,6 +79,12 @@
src = inputs.apropos;
subdirs = [ "." ];
}
{
src = inputs.purescript-bridge;
subdirs = [
"."
];
}
];
modules = [ (plutarch.haskellModule system) ];
shell = {
@ -110,6 +118,7 @@
ps.plutarch-safemoney
ps.plutarch-test
ps.apropos
ps.purescript-bridge
];
};
};