fetchurl.nix: change other use of __impure

This commit is contained in:
Adam Joseph 2022-09-16 01:52:20 -07:00
parent 673fd21b7c
commit fb985f855c

View file

@ -38,6 +38,6 @@ derivation ({
# To make "nix-prefetch-url" work.
urls = [ url ];
} // (if __impure
then { inherit __impure; }
} // (if impure
then { __impure = true; }
else { inherit outputHashAlgo outputHash; }))