Replace shell.nix with a flake devShell attribute

This commit is contained in:
Eelco Dolstra
2019-05-08 18:12:24 +02:00
parent 4172b5b290
commit 2ecc06e557
3 changed files with 8 additions and 4 deletions

View File

@ -17,5 +17,12 @@
packages.hydra = hydraJobs.build.x86_64-linux;
defaultPackage = packages.hydra;
devShell = (import ./release.nix {
hydraSrc = deps.self;
nixpkgs = deps.nixpkgs;
shell = true;
}).build.x86_64-linux;
};
}