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
245 B
Nix
14 lines
245 B
Nix
# Built context: derivation output reference
|
|
with import ../config.nix;
|
|
let
|
|
drv = mkDerivation {
|
|
name = "helper-1.0";
|
|
buildCommand = "mkdir -p $out";
|
|
};
|
|
in
|
|
{
|
|
type = "derivation";
|
|
name = "${drv}";
|
|
outPath = "/nix/store/fake";
|
|
}
|