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.
13 lines
206 B
Nix
13 lines
206 B
Nix
with import ../config.nix;
|
|
let
|
|
normal = mkDerivation {
|
|
name = "normal-1.0";
|
|
buildCommand = "mkdir -p $out";
|
|
};
|
|
in
|
|
{
|
|
type = "derivation";
|
|
name = "${normal}";
|
|
outPath = "/nix/store/fake";
|
|
}
|