nix dev-shell: Set dontAddDisableDepTrack

This commit is contained in:
Eelco Dolstra 2019-08-09 18:51:52 +02:00
parent ab16b3d076
commit 662db921e2
No known key found for this signature in database
GPG key ID: 8170B4726D7198DE

View file

@ -72,7 +72,7 @@ Path getDerivationEnvironment(ref<Store> store, Derivation drv)
if (builder != "bash")
throw Error("'nix shell' only works on derivations that use 'bash' as their builder");
drv.args = {"-c", "set -e; export IN_NIX_SHELL=impure; if [[ -n $stdenv ]]; then source $stdenv/setup; fi; set > $out"};
drv.args = {"-c", "set -e; export IN_NIX_SHELL=impure; export dontAddDisableDepTrack=1; if [[ -n $stdenv ]]; then source $stdenv/setup; fi; set > $out"};
/* Remove derivation checks. */
drv.env.erase("allowedReferences");