bump liqwid-nix
This commit is contained in:
parent
4d3a57403b
commit
a0c7055716
3 changed files with 28 additions and 31 deletions
|
|
@ -1,3 +0,0 @@
|
|||
{
|
||||
imports = [ ./flake-module.nix ];
|
||||
}
|
||||
|
|
@ -1,26 +0,0 @@
|
|||
{ 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"
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
30
flake.nix
30
flake.nix
|
|
@ -16,7 +16,7 @@
|
|||
nixpkgs-latest.url = "github:NixOS/nixpkgs";
|
||||
|
||||
liqwid-nix = {
|
||||
url = "github:Liqwid-Labs/liqwid-nix/emiflake/ux-improvements";
|
||||
url = "github:Liqwid-Labs/liqwid-nix/liqwid-nix-2.0";
|
||||
inputs.nixpkgs-latest.follows = "nixpkgs-latest";
|
||||
};
|
||||
|
||||
|
|
@ -31,7 +31,33 @@
|
|||
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" ];
|
||||
};
|
||||
})
|
||||
];
|
||||
systems = [ "x86_64-linux" "aarch64-darwin" "x86_64-darwin" "aarch64-linux" ];
|
||||
perSystem = { config, self', inputs', pkgs, system, ... }: { };
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue