2017-11-10 22:51:34 +00:00
|
|
|
with import ./config.nix;
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
input = import ./simple.nix;
|
|
|
|
|
|
|
|
dependent = mkDerivation {
|
|
|
|
name = "dependent";
|
2022-11-14 14:13:46 +00:00
|
|
|
buildCommand = ''
|
|
|
|
mkdir -p $out
|
|
|
|
echo -n "$input1" > "$out/file1"
|
|
|
|
echo -n "$input2" > "$out/file2"
|
|
|
|
'';
|
|
|
|
input1 = "${input}/hello";
|
|
|
|
input2 = "hello";
|
2017-11-10 22:51:34 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
readDependent = mkDerivation {
|
2022-11-14 14:13:46 +00:00
|
|
|
# Will evaluate correctly because file2 doesn't have any references,
|
|
|
|
# even though the `dependent` derivation does.
|
|
|
|
name = builtins.readFile (dependent + "/file2");
|
|
|
|
buildCommand = ''
|
|
|
|
echo "$input" > "$out"
|
|
|
|
'';
|
|
|
|
input = builtins.readFile (dependent + "/file1");
|
2017-11-10 22:51:34 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
in readDependent
|