bump liqwid-nix to 2.1.1
This commit is contained in:
parent
de820817d2
commit
6d516e8076
2 changed files with 118 additions and 4594 deletions
4685
flake.lock
generated
4685
flake.lock
generated
File diff suppressed because it is too large
Load diff
27
flake.nix
27
flake.nix
|
|
@ -15,23 +15,20 @@
|
||||||
nixpkgs-latest.url = "github:NixOS/nixpkgs";
|
nixpkgs-latest.url = "github:NixOS/nixpkgs";
|
||||||
|
|
||||||
liqwid-nix = {
|
liqwid-nix = {
|
||||||
url = "github:Liqwid-Labs/liqwid-nix/v2.0.1";
|
url = "github:Liqwid-Labs/liqwid-nix/v2.1.1";
|
||||||
inputs.nixpkgs-latest.follows = "nixpkgs-latest";
|
inputs.nixpkgs-latest.follows = "nixpkgs-latest";
|
||||||
};
|
};
|
||||||
|
|
||||||
liqwid-script-export.url = "github:Liqwid-Labs/liqwid-script-export";
|
liqwid-script-export.url = "github:Liqwid-Labs/liqwid-script-export";
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = { self, liqwid-nix, flake-parts, ... }:
|
outputs = inputs@{ flake-parts, ... }:
|
||||||
flake-parts.lib.mkFlake { inherit self; } {
|
flake-parts.lib.mkFlake { inherit inputs; } {
|
||||||
imports = liqwid-nix.allModules;
|
imports = [
|
||||||
|
inputs.liqwid-nix.flakeModule
|
||||||
|
];
|
||||||
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, ... }:
|
||||||
let
|
|
||||||
pkgs = import self.inputs.nixpkgs {
|
|
||||||
inherit system;
|
|
||||||
};
|
|
||||||
in
|
|
||||||
{
|
{
|
||||||
onchain.default = {
|
onchain.default = {
|
||||||
src = ./.;
|
src = ./.;
|
||||||
|
|
@ -39,12 +36,12 @@
|
||||||
shell = { };
|
shell = { };
|
||||||
enableBuildChecks = true;
|
enableBuildChecks = true;
|
||||||
extraHackageDeps = [
|
extraHackageDeps = [
|
||||||
"${self.inputs.liqwid-script-export.inputs.liqwid-plutarch-extra.inputs.plutarch-quickcheck}"
|
"${inputs.liqwid-script-export.inputs.liqwid-plutarch-extra.inputs.plutarch-quickcheck}"
|
||||||
"${self.inputs.liqwid-script-export.inputs.liqwid-plutarch-extra.inputs.plutarch-context-builder}"
|
"${inputs.liqwid-script-export.inputs.liqwid-plutarch-extra.inputs.plutarch-context-builder}"
|
||||||
"${self.inputs.liqwid-script-export.inputs.liqwid-plutarch-extra}"
|
"${inputs.liqwid-script-export.inputs.liqwid-plutarch-extra}"
|
||||||
"${self.inputs.liqwid-script-export}"
|
"${inputs.liqwid-script-export}"
|
||||||
"${self.inputs.liqwid-script-export.inputs.ply}/ply-core"
|
"${inputs.liqwid-script-export.inputs.liqwid-plutarch-extra.inputs.ply}/ply-core"
|
||||||
"${self.inputs.liqwid-script-export.inputs.ply}/ply-plutarch"
|
"${inputs.liqwid-script-export.inputs.liqwid-plutarch-extra.inputs.ply}/ply-plutarch"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
ci.required = [ "all_onchain" ];
|
ci.required = [ "all_onchain" ];
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue