Before the change "illegal reference" was hard to interpret as it did
not mention what derivation actually hits it.
Today's `nixpkgs` example:
Before the change:
$ nix build --no-link -f. postgresql_14
...
error: derivation contains an illegal reference specifier 'man'
After the change:
$ nix build --no-link -f. postgresql_14
...
error: derivation '/nix/store/bxp6g57limvwiga61vdlyvhy7i8rp6wd-postgresql-14.15.drv' output check for 'lib' contains an illegal reference specifier 'man', expected store path or output name (one of [debug, dev, doc, lib, out])
Co-authored-by: Robert Hensing <roberth@users.noreply.github.com>
Co-authored-by: Maximilian Bosch <maximilian@mbosch.me>
(cherry picked from commit ec46a7e4dea8c568677d3d98588810bcd178f048)
Change-Id: I36e3e951c282123e780a920d5bef59de74de9fe0
84 lines
2.0 KiB
Nix
84 lines
2.0 KiB
Nix
with import ./config.nix;
|
|
|
|
rec {
|
|
|
|
dep = import ./dependencies.nix {};
|
|
|
|
makeTest = nr: args: mkDerivation ({
|
|
name = "check-refs-" + toString nr;
|
|
} // args);
|
|
|
|
src = builtins.toFile "aux-ref" "bla bla";
|
|
|
|
test1 = makeTest 1 {
|
|
builder = builtins.toFile "builder.sh" "mkdir $out; ln -s $dep $out/link";
|
|
inherit dep;
|
|
};
|
|
|
|
test2 = makeTest 2 {
|
|
builder = builtins.toFile "builder.sh" "mkdir $out; ln -s ${src} $out/link";
|
|
inherit dep;
|
|
};
|
|
|
|
test3 = makeTest 3 {
|
|
builder = builtins.toFile "builder.sh" "mkdir $out; ln -s $dep $out/link";
|
|
allowedReferences = [];
|
|
inherit dep;
|
|
};
|
|
|
|
test4 = makeTest 4 {
|
|
builder = builtins.toFile "builder.sh" "mkdir $out; ln -s $dep $out/link";
|
|
allowedReferences = [dep];
|
|
inherit dep;
|
|
};
|
|
|
|
test5 = makeTest 5 {
|
|
builder = builtins.toFile "builder.sh" "mkdir $out";
|
|
allowedReferences = [];
|
|
inherit dep;
|
|
};
|
|
|
|
test6 = makeTest 6 {
|
|
builder = builtins.toFile "builder.sh" "mkdir $out; ln -s $out $out/link";
|
|
allowedReferences = [];
|
|
inherit dep;
|
|
};
|
|
|
|
test7 = makeTest 7 {
|
|
builder = builtins.toFile "builder.sh" "mkdir $out; ln -s $out $out/link";
|
|
allowedReferences = ["out"];
|
|
inherit dep;
|
|
};
|
|
|
|
test8 = makeTest 8 {
|
|
builder = builtins.toFile "builder.sh" "mkdir $out; ln -s ${test1} $out/link";
|
|
inherit dep;
|
|
};
|
|
|
|
test9 = makeTest 9 {
|
|
builder = builtins.toFile "builder.sh" "mkdir $out; ln -s $dep $out/link";
|
|
inherit dep;
|
|
disallowedReferences = [dep];
|
|
};
|
|
|
|
test10 = makeTest 10 {
|
|
builder = builtins.toFile "builder.sh" "mkdir $out; echo $test5; ln -s $dep $out/link";
|
|
inherit dep test5;
|
|
disallowedReferences = [test5];
|
|
};
|
|
|
|
test11 = makeTest 11 {
|
|
__structuredAttrs = true;
|
|
unsafeDiscardReferences.out = true;
|
|
outputChecks.out.allowedReferences = [];
|
|
buildCommand = ''echo ${dep} > "''${outputs[out]}"'';
|
|
};
|
|
|
|
test12 = makeTest 12 {
|
|
builder = builtins.toFile "builder.sh" "mkdir $out $lib";
|
|
outputs = ["out" "lib"];
|
|
disallowedReferences = ["dev"];
|
|
};
|
|
|
|
}
|