mirror of
https://github.com/NixOS/nix
synced 2025-06-25 02:21:16 +02:00
Update flake.{nix,lock}
This commit is contained in:
parent
2341f30ec6
commit
d749f5132b
2 changed files with 7 additions and 9 deletions
12
flake.nix
12
flake.nix
|
@ -3,15 +3,13 @@
|
|||
|
||||
description = "The purely functional package manager";
|
||||
|
||||
edition = 201906;
|
||||
edition = 201909;
|
||||
|
||||
inputs = [ "nixpkgs" ];
|
||||
|
||||
outputs = inputs: rec {
|
||||
outputs = { self, nixpkgs }: rec {
|
||||
|
||||
hydraJobs = import ./release.nix {
|
||||
nix = inputs.self;
|
||||
nixpkgs = inputs.nixpkgs;
|
||||
nix = self;
|
||||
nixpkgs = nixpkgs;
|
||||
};
|
||||
|
||||
checks = {
|
||||
|
@ -29,7 +27,7 @@
|
|||
defaultPackage = packages.nix;
|
||||
|
||||
devShell = import ./shell.nix {
|
||||
nixpkgs = inputs.nixpkgs;
|
||||
inherit nixpkgs;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue