bump liqwid-nix
This commit is contained in:
parent
e6c53d0ddc
commit
0da42a6120
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";
|
nixpkgs-latest.url = "github:NixOS/nixpkgs";
|
||||||
|
|
||||||
liqwid-nix = {
|
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";
|
inputs.nixpkgs-latest.follows = "nixpkgs-latest";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -31,7 +31,33 @@
|
||||||
outputs = { self, liqwid-nix, flake-parts, ... }:
|
outputs = { self, liqwid-nix, flake-parts, ... }:
|
||||||
flake-parts.lib.mkFlake { inherit self; } {
|
flake-parts.lib.mkFlake { inherit self; } {
|
||||||
imports = liqwid-nix.allModules ++ [
|
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" ];
|
systems = [ "x86_64-linux" "aarch64-darwin" "x86_64-darwin" "aarch64-linux" ];
|
||||||
perSystem = { config, self', inputs', pkgs, system, ... }: { };
|
perSystem = { config, self', inputs', pkgs, system, ... }: { };
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue