Files
nix/tests/functional/cli-characterisation/outputName-with-context.nix
Robert Hensing fd984a3e9d tests: add CLI characterisation tests
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.
2026-02-26 18:06:51 +01:00

14 lines
252 B
Nix

with import ../config.nix;
let
normal = mkDerivation {
name = "normal-1.0";
buildCommand = "mkdir -p $out";
};
in
{
type = "derivation";
name = "outputName-with-context-1.0";
outPath = "/nix/store/fake";
outputName = "${normal}";
}