Use latest LPE
This commit is contained in:
parent
a0c7055716
commit
ef86f8a917
3 changed files with 38037 additions and 563 deletions
|
|
@ -103,7 +103,6 @@ common deps
|
|||
, optics
|
||||
, plutarch
|
||||
, plutarch-extra
|
||||
, plutarch-numeric
|
||||
, plutus-core
|
||||
, plutus-ledger-api
|
||||
, plutus-tx
|
||||
|
|
|
|||
38534
flake.lock
generated
38534
flake.lock
generated
File diff suppressed because it is too large
Load diff
65
flake.nix
65
flake.nix
|
|
@ -6,7 +6,6 @@
|
|||
extra-substituters = [ "https://cache.iog.io" "https://public-plutonomicon.cachix.org" "https://mlabs.cachix.org" ];
|
||||
extra-trusted-public-keys = [ "hydra.iohk.io:f/Ea+s+dFdN+3Y/G+FDgSq+a5NEWhJGzdjvKNGv0/EQ=" "public-plutonomicon.cachix.org-1:3AKJMhCLn32gri1drGuaZmFrmnue+KkKrhhubQk/CWc=" ];
|
||||
allow-import-from-derivation = "true";
|
||||
bash-prompt = "\\[\\e[0m\\][\\[\\e[0;2m\\]liqwid-nix \\e[0;5m\\]2.0 \\[\\e[0;93m\\]\\w\\[\\e[0m\\]]\\[\\e[0m\\]$ \\[\\e[0m\\]";
|
||||
max-jobs = "auto";
|
||||
auto-optimise-store = "true";
|
||||
};
|
||||
|
|
@ -20,46 +19,38 @@
|
|||
inputs.nixpkgs-latest.follows = "nixpkgs-latest";
|
||||
};
|
||||
|
||||
ply.url = "github:mlabs-haskell/ply?ref=master";
|
||||
plutarch-numeric.url = "github:Liqwid-Labs/plutarch-numeric/emiflake/liqwid-nix-2.0";
|
||||
liqwid-plutarch-extra.url = "github:Liqwid-Labs/liqwid-plutarch-extra/emiflake/liqwid-nix-2.0";
|
||||
plutarch-quickcheck.url = "github:Liqwid-Labs/plutarch-quickcheck/emiflake/liqwid-nix-2.0";
|
||||
plutarch-context-builder.url = "github:Liqwid-Labs/plutarch-context-builder/emiflake/liqwid-nix-2.0";
|
||||
liqwid-script-export.url = "github:Liqwid-Labs/liqwid-script-export/emiflake/liqwid-nix-2.0";
|
||||
liqwid-plutarch-extra.url = "github:Liqwid-Labs/liqwid-plutarch-extra";
|
||||
plutarch-quickcheck.url = "github:Liqwid-Labs/plutarch-quickcheck";
|
||||
plutarch-context-builder.url = "github:Liqwid-Labs/plutarch-context-builder";
|
||||
liqwid-script-export.url = "github:Liqwid-Labs/liqwid-script-export";
|
||||
};
|
||||
|
||||
outputs = { self, liqwid-nix, flake-parts, ... }:
|
||||
flake-parts.lib.mkFlake { inherit self; } {
|
||||
imports = liqwid-nix.allModules ++ [
|
||||
({ self, ... }:
|
||||
{
|
||||
perSystem = { config, pkgs', self', inputs, system, ... }:
|
||||
let
|
||||
pkgs = import self.inputs.nixpkgs {
|
||||
inherit system;
|
||||
};
|
||||
in
|
||||
{
|
||||
onchain.default = {
|
||||
src = ./.;
|
||||
ghc.version = "ghc925";
|
||||
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"
|
||||
];
|
||||
};
|
||||
ci.required = [ "all_onchain" ];
|
||||
};
|
||||
})
|
||||
];
|
||||
imports = liqwid-nix.allModules;
|
||||
systems = [ "x86_64-linux" "aarch64-darwin" "x86_64-darwin" "aarch64-linux" ];
|
||||
perSystem = { config, self', inputs', pkgs, system, ... }: { };
|
||||
perSystem = { config, self', inputs', pkgs, system, ... }:
|
||||
let
|
||||
pkgs = import self.inputs.nixpkgs {
|
||||
inherit system;
|
||||
};
|
||||
in
|
||||
{
|
||||
onchain.default = {
|
||||
src = ./.;
|
||||
ghc.version = "ghc925";
|
||||
shell = { };
|
||||
enableBuildChecks = true;
|
||||
extraHackageDeps = [
|
||||
"${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"
|
||||
];
|
||||
};
|
||||
ci.required = [ "all_onchain" ];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue