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.
16 lines
225 B
Nix
16 lines
225 B
Nix
{
|
|
type = "derivation";
|
|
name = "ghost-outpath-1.0";
|
|
outPath = builtins.toFile "out" "";
|
|
out = {
|
|
outPath = builtins.toFile "out" "";
|
|
};
|
|
ghost = {
|
|
# no outPath
|
|
};
|
|
outputs = [
|
|
"out"
|
|
"ghost"
|
|
];
|
|
}
|