forked from lix-project/lix
Update flake.{nix,lock}
This commit is contained in:
parent
2341f30ec6
commit
d749f5132b
|
@ -3,9 +3,9 @@
|
||||||
"nixpkgs": {
|
"nixpkgs": {
|
||||||
"id": "nixpkgs",
|
"id": "nixpkgs",
|
||||||
"inputs": {},
|
"inputs": {},
|
||||||
"narHash": "sha256-5/HXWs25BLukwG9VaxmdmUf/9o79e32aW/tmhcWEbKk=",
|
"narHash": "sha256-AndIaZrFFIT+VFhVtQHsS90I5SWfjTDTxzs9Hx9ZxZA=",
|
||||||
"nonFlakeInputs": {},
|
"nonFlakeInputs": {},
|
||||||
"uri": "github:edolstra/nixpkgs/62ac6f7f504c8d3998558d9b269d22d26f13f1f0"
|
"uri": "github:edolstra/nixpkgs/9bd2e2c96ddeec64e9ad37540412263fdb78458d"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"nonFlakeInputs": {},
|
"nonFlakeInputs": {},
|
||||||
|
|
12
flake.nix
12
flake.nix
|
@ -3,15 +3,13 @@
|
||||||
|
|
||||||
description = "The purely functional package manager";
|
description = "The purely functional package manager";
|
||||||
|
|
||||||
edition = 201906;
|
edition = 201909;
|
||||||
|
|
||||||
inputs = [ "nixpkgs" ];
|
outputs = { self, nixpkgs }: rec {
|
||||||
|
|
||||||
outputs = inputs: rec {
|
|
||||||
|
|
||||||
hydraJobs = import ./release.nix {
|
hydraJobs = import ./release.nix {
|
||||||
nix = inputs.self;
|
nix = self;
|
||||||
nixpkgs = inputs.nixpkgs;
|
nixpkgs = nixpkgs;
|
||||||
};
|
};
|
||||||
|
|
||||||
checks = {
|
checks = {
|
||||||
|
@ -29,7 +27,7 @@
|
||||||
defaultPackage = packages.nix;
|
defaultPackage = packages.nix;
|
||||||
|
|
||||||
devShell = import ./shell.nix {
|
devShell = import ./shell.nix {
|
||||||
nixpkgs = inputs.nixpkgs;
|
inherit nixpkgs;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue