2022-03-30 14:31:01 +00:00
|
|
|
with import ./config.nix;
|
|
|
|
|
|
|
|
rec {
|
|
|
|
|
|
|
|
impure = mkDerivation {
|
|
|
|
name = "impure";
|
|
|
|
outputs = [ "out" "stuff" ];
|
|
|
|
buildCommand =
|
|
|
|
''
|
2022-03-11 12:23:23 +00:00
|
|
|
echo impure
|
2022-03-30 14:31:01 +00:00
|
|
|
x=$(< $TEST_ROOT/counter)
|
|
|
|
mkdir $out $stuff
|
|
|
|
echo $x > $out/n
|
|
|
|
ln -s $out/n $stuff/bla
|
|
|
|
printf $((x + 1)) > $TEST_ROOT/counter
|
|
|
|
'';
|
|
|
|
__impure = true;
|
|
|
|
impureEnvVars = [ "TEST_ROOT" ];
|
|
|
|
};
|
|
|
|
|
|
|
|
impureOnImpure = mkDerivation {
|
|
|
|
name = "impure-on-impure";
|
|
|
|
buildCommand =
|
|
|
|
''
|
2022-03-11 12:23:23 +00:00
|
|
|
echo impure-on-impure
|
2022-03-30 14:31:01 +00:00
|
|
|
x=$(< ${impure}/n)
|
|
|
|
mkdir $out
|
|
|
|
printf X$x > $out/n
|
|
|
|
ln -s ${impure.stuff} $out/symlink
|
|
|
|
ln -s $out $out/self
|
|
|
|
'';
|
|
|
|
__impure = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
# This is not allowed.
|
|
|
|
inputAddressed = mkDerivation {
|
|
|
|
name = "input-addressed";
|
|
|
|
buildCommand =
|
|
|
|
''
|
|
|
|
cat ${impure} > $out
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2022-03-11 12:23:23 +00:00
|
|
|
contentAddressed = mkDerivation {
|
|
|
|
name = "content-addressed";
|
|
|
|
buildCommand =
|
|
|
|
''
|
|
|
|
echo content-addressed
|
|
|
|
x=$(< ${impureOnImpure}/n)
|
|
|
|
printf ''${x:0:1} > $out
|
|
|
|
'';
|
|
|
|
outputHashMode = "recursive";
|
|
|
|
outputHash = "sha256-eBYxcgkuWuiqs4cKNgKwkb3vY/HR0vVsJnqe8itJGcQ=";
|
|
|
|
};
|
|
|
|
|
|
|
|
inputAddressedAfterCA = mkDerivation {
|
|
|
|
name = "input-addressed-after-ca";
|
|
|
|
buildCommand =
|
|
|
|
''
|
|
|
|
cat ${contentAddressed} > $out
|
|
|
|
'';
|
|
|
|
};
|
2022-03-30 14:31:01 +00:00
|
|
|
}
|