forked from lix-project/hydra
Don't copy src for nix-shell
This commit is contained in:
parent
81abb6e166
commit
a0c4120232
|
@ -32,7 +32,7 @@ in rec {
|
||||||
|
|
||||||
releaseTools.makeSourceTarball {
|
releaseTools.makeSourceTarball {
|
||||||
name = "hydra-tarball";
|
name = "hydra-tarball";
|
||||||
src = hydraSrc;
|
src = if lib.inNixShell then null else hydraSrc;
|
||||||
inherit officialRelease;
|
inherit officialRelease;
|
||||||
version = builtins.readFile ./version;
|
version = builtins.readFile ./version;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue