Improve coverage ahead of changes to get-drvs.cc and related code. Each fixture is a separate file to avoid line-number churn in error expectations.
14 lines
230 B
Nix
14 lines
230 B
Nix
{
|
|
type = "derivation";
|
|
name = "ghost-output-1.0";
|
|
outPath = builtins.toFile "out" "";
|
|
out = {
|
|
outPath = builtins.toFile "out" "";
|
|
};
|
|
outputs = [
|
|
"out"
|
|
"ghost"
|
|
];
|
|
# no "ghost" attr -> silently skipped
|
|
}
|