Merge pull request #109 from Liqwid-Labs/seungheonoh/pcbsetup
Made PQ and PCB available to Agora
This commit is contained in:
commit
9a44550c2d
3 changed files with 2684 additions and 91 deletions
2
.github/workflows/integrate.yaml
vendored
2
.github/workflows/integrate.yaml
vendored
|
|
@ -35,6 +35,7 @@ jobs:
|
|||
${{ secrets.LIQWID_PLUTARCH_EXTRA_PRIVATE }}
|
||||
${{ secrets.PLUTARCH_NUMERIC_PRIVATE }}
|
||||
${{ secrets.PLUTARCH_SAFE_MONEY_PRIVATE }}
|
||||
${{ secrets.PLUTARCH_CONTEXT_BUILDER_PRIVATE }}
|
||||
|
||||
- uses: cachix/install-nix-action@v16
|
||||
name: Set up Nix and IOHK caches
|
||||
|
|
@ -64,6 +65,7 @@ jobs:
|
|||
${{ secrets.LIQWID_PLUTARCH_EXTRA_PRIVATE }}
|
||||
${{ secrets.PLUTARCH_NUMERIC_PRIVATE }}
|
||||
${{ secrets.PLUTARCH_SAFE_MONEY_PRIVATE }}
|
||||
${{ secrets.PLUTARCH_CONTEXT_BUILDER_PRIVATE }}
|
||||
|
||||
- uses: cachix/install-nix-action@v16
|
||||
name: Set up Nix and IOHK caches
|
||||
|
|
|
|||
2757
flake.lock
generated
2757
flake.lock
generated
File diff suppressed because it is too large
Load diff
16
flake.nix
16
flake.nix
|
|
@ -22,6 +22,11 @@
|
|||
inputs.plutarch-safe-money.url =
|
||||
"git+ssh://git@github.com/Liqwid-Labs/plutarch-safe-money?ref=main";
|
||||
|
||||
# Testing
|
||||
inputs.plutarch-quickcheck.url =
|
||||
"github:liqwid-labs/plutarch-quickcheck";
|
||||
inputs.plutarch-context-builder.url =
|
||||
"git+ssh://git@github.com/Liqwid-Labs/plutarch-context-builder?ref=main";
|
||||
# Follows jhodgdev's forks of apropos and apropos-tx, as these
|
||||
# are not constrained to `base ^>= 4.14`. Once these are merged
|
||||
# to their respective master branches, we should change the
|
||||
|
|
@ -36,6 +41,7 @@
|
|||
inputs.apropos.inputs.nixpkgs.follows =
|
||||
"plutarch/haskell-nix/nixpkgs-unstable";
|
||||
|
||||
# Purescript
|
||||
inputs.purescript-bridge.url =
|
||||
"github:mlabs-haskell/purescript-bridge?rev=8e6251e8b1f489748f5bbd9ca6384bcf8cefbbef";
|
||||
|
||||
|
|
@ -89,6 +95,14 @@
|
|||
src = inputs.plutarch-safe-money;
|
||||
subdirs = [ "." ];
|
||||
}
|
||||
{
|
||||
src = inputs.plutarch-quickcheck;
|
||||
subdirs = [ "." ];
|
||||
}
|
||||
{
|
||||
src = inputs.plutarch-context-builder;
|
||||
subdirs = [ "." ];
|
||||
}
|
||||
{
|
||||
src = inputs.apropos-tx;
|
||||
subdirs = [ "." ];
|
||||
|
|
@ -136,6 +150,8 @@
|
|||
|
||||
# testing
|
||||
ps.tasty-quickcheck
|
||||
ps.plutarch-quickcheck
|
||||
ps.plutarch-context-builder
|
||||
ps.apropos-tx
|
||||
ps.apropos
|
||||
ps.apropos
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue