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

test illegal reference specifier error message

(cherry picked from commit f4def47c89)
This commit is contained in:
Robert Hensing 2025-01-18 10:21:08 +01:00 committed by Mergify
parent db1950e768
commit 6f54b90f36
2 changed files with 10 additions and 0 deletions

View file

@ -79,4 +79,10 @@ rec {
buildCommand = ''echo ${dep} > "''${outputs[out]}"'';
};
test12 = makeTest 12 {
builder = builtins.toFile "builder.sh" "mkdir $out $lib";
outputs = ["out" "lib"];
disallowedReferences = ["dev"];
};
}