Don't copy src for nix-shell

This commit is contained in:
Eelco Dolstra 2015-06-19 17:45:11 +02:00
parent 81abb6e166
commit a0c4120232

View file

@ -32,7 +32,7 @@ in rec {
releaseTools.makeSourceTarball {
name = "hydra-tarball";
src = hydraSrc;
src = if lib.inNixShell then null else hydraSrc;
inherit officialRelease;
version = builtins.readFile ./version;