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
No known key found for this signature in database
GPG key ID: 8170B4726D7198DE
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;
};
}

View file

@ -138,9 +138,7 @@ rec {
preConfigure = "autoreconf -vfi";
NIX_LDFLAGS = [
"-lpthread"
];
NIX_LDFLAGS = [ "-lpthread" ];
enableParallelBuilding = true;

View file

@ -1 +0,0 @@
(import ./release.nix { shell = true; }).build.x86_64-linux