2012-01-26 13:04:50 +00:00
|
|
|
with import ./config.nix;
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
bar = mkDerivation {
|
|
|
|
name = "bar";
|
|
|
|
builder = builtins.toFile "builder.sh"
|
|
|
|
''
|
|
|
|
echo 'builtins.add 123 456' > $out
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2019-07-30 09:22:55 +00:00
|
|
|
value =
|
|
|
|
# Test that pathExists can check the existence of /nix/store paths
|
|
|
|
assert builtins.pathExists bar;
|
|
|
|
import bar;
|
2012-01-26 13:04:50 +00:00
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
mkDerivation {
|
|
|
|
name = "foo";
|
|
|
|
builder = builtins.toFile "builder.sh"
|
|
|
|
''
|
|
|
|
echo -n FOO${toString value} > $out
|
|
|
|
'';
|
|
|
|
}
|