nixpkgs/pkgs/test/nixpkgs-check-by-name/tests/multiple-failures/pkgs/by-name/ba/foo/package.nix
Silvan Mosberger cf90aa9a86 tests.nixpkgs-check-by-name: Don't test invalid Nix files
Since https://github.com/NixOS/nixpkgs/pull/279892, there's a separate
check that makes sure all changed Nix files evaluate. To not trigger
that, we need to remove all invalid Nix expressions from the tests.
2024-01-17 15:50:21 +01:00

7 lines
134 B
Nix

{ someDrv }: someDrv // {
escapeAbsolute = /bar;
escapeRelative = ../.;
nixPath = <nixpkgs>;
pathWithSubexpr = ./${"test"};
}