1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-10 08:53:55 +02:00

Provide default values for outputHashAlgo and outputHashMode

This commit is contained in:
Eelco Dolstra 2022-03-31 16:56:44 +02:00
parent a99af85a77
commit 7537097284
2 changed files with 11 additions and 13 deletions

View file

@ -15,8 +15,6 @@ rec {
printf $((x + 1)) > $TEST_ROOT/counter
'';
__impure = true;
outputHashAlgo = "sha256";
outputHashMode = "recursive";
impureEnvVars = [ "TEST_ROOT" ];
};
@ -32,8 +30,6 @@ rec {
ln -s $out $out/self
'';
__impure = true;
outputHashAlgo = "sha256";
outputHashMode = "recursive";
};
# This is not allowed.
@ -53,7 +49,6 @@ rec {
x=$(< ${impureOnImpure}/n)
printf ''${x:0:1} > $out
'';
outputHashAlgo = "sha256";
outputHashMode = "recursive";
outputHash = "sha256-eBYxcgkuWuiqs4cKNgKwkb3vY/HR0vVsJnqe8itJGcQ=";
};