use liqwid-nix 2.0
This commit is contained in:
parent
25255a202b
commit
2843e1dd63
35 changed files with 458 additions and 564 deletions
28
flake-module.nix
Normal file
28
flake-module.nix
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
{ self, ... }:
|
||||
{
|
||||
perSystem = { config, pkgs', self', inputs, system, ... }:
|
||||
let
|
||||
pkgs = import self.inputs.nixpkgs {
|
||||
inherit system;
|
||||
};
|
||||
in
|
||||
{
|
||||
onchain.default = {
|
||||
src = ./.;
|
||||
ghc = {
|
||||
version = "ghc923";
|
||||
};
|
||||
shell = { };
|
||||
enableBuildChecks = true;
|
||||
extraHackageDeps = [
|
||||
"${self.inputs.plutarch-numeric}"
|
||||
"${self.inputs.plutarch-quickcheck}"
|
||||
"${self.inputs.plutarch-context-builder}"
|
||||
"${self.inputs.liqwid-plutarch-extra}"
|
||||
"${self.inputs.liqwid-script-export}"
|
||||
"${self.inputs.liqwid-script-export.inputs.ply}/ply-core"
|
||||
"${self.inputs.liqwid-script-export.inputs.ply}/ply-plutarch"
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue