use liqwid-nix 2.0

This commit is contained in:
Emily Martins 2022-11-30 01:26:47 +01:00
parent 25255a202b
commit 2843e1dd63
35 changed files with 458 additions and 564 deletions

28
flake-module.nix Normal file
View 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"
];
};
};
}