2011-09-14 05:59:29 +00:00
|
|
|
with import ./config.nix;
|
|
|
|
|
2011-12-20 17:01:02 +00:00
|
|
|
rec {
|
2011-09-14 05:59:29 +00:00
|
|
|
|
|
|
|
a = mkDerivation {
|
|
|
|
name = "multiple-outputs-a";
|
|
|
|
outputs = [ "first" "second" ];
|
2011-12-20 17:01:02 +00:00
|
|
|
builder = builtins.toFile "builder.sh"
|
|
|
|
''
|
|
|
|
mkdir $first $second
|
|
|
|
test -z $all
|
|
|
|
echo "second" > $first/file
|
|
|
|
echo "first" > $second/file
|
|
|
|
'';
|
2011-09-14 05:59:29 +00:00
|
|
|
helloString = "Hello, world!";
|
|
|
|
};
|
|
|
|
|
2011-12-20 17:01:02 +00:00
|
|
|
b = mkDerivation {
|
|
|
|
defaultOutput = assert a.second.helloString == "Hello, world!"; a;
|
|
|
|
firstOutput = a.first.first;
|
|
|
|
secondOutput = a.second.first.first.second.second.first.second;
|
|
|
|
allOutputs = a.all;
|
|
|
|
name = "multiple-outputs-b";
|
|
|
|
builder = builtins.toFile "builder.sh"
|
|
|
|
''
|
|
|
|
mkdir $out
|
|
|
|
test "$firstOutput $secondOutput" = "$allOutputs"
|
|
|
|
test "$defaultOutput" = "$firstOutput"
|
|
|
|
test "$(cat $firstOutput/file)" = "second"
|
|
|
|
test "$(cat $secondOutput/file)" = "first"
|
|
|
|
echo "success" > $out/file
|
|
|
|
'';
|
|
|
|
};
|
2011-09-14 05:59:29 +00:00
|
|
|
|
2011-12-21 13:47:21 +00:00
|
|
|
c = mkDerivation {
|
|
|
|
name = "multiple-outputs-c";
|
|
|
|
drv = b.drvPath;
|
|
|
|
builder = builtins.toFile "builder.sh"
|
|
|
|
''
|
|
|
|
mkdir $out
|
|
|
|
ln -s $drv $out/drv
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2011-12-20 17:08:43 +00:00
|
|
|
cyclic = (mkDerivation {
|
|
|
|
name = "cyclic-outputs";
|
|
|
|
outputs = [ "a" "b" ];
|
|
|
|
builder = builtins.toFile "builder.sh"
|
|
|
|
''
|
|
|
|
mkdir $a $b
|
|
|
|
echo $a > $b/foo
|
|
|
|
echo $b > $a/bar
|
|
|
|
'';
|
|
|
|
}).a;
|
|
|
|
|
2011-09-14 05:59:29 +00:00
|
|
|
}
|