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.
9 lines
145 B
Nix
9 lines
145 B
Nix
with import ../config.nix;
|
|
mkDerivation {
|
|
name = "meta-with-function-1.0";
|
|
buildCommand = "mkdir -p $out";
|
|
meta = {
|
|
bad = x: x;
|
|
};
|
|
}
|