about summary refs log tree commit diff
path: root/nixpkgs/pkgs/test/nixpkgs-check-by-name/tests/override-different-file/expected
blob: 16292c0c0eb14ca9e4a4dfc46a06548d1522bd7a (plain) (blame)
1
2
3
4
5
6
7
8
9
- Because pkgs/by-name/no/nonDerivation exists, the attribute `pkgs.nonDerivation` must be defined like

    nonDerivation = callPackage ./pkgs/by-name/no/nonDerivation/package.nix { /* ... */ };

  However, in this PR, the first `callPackage` argument is the wrong path. See the definition in all-packages.nix:2:

    nonDerivation = callPackage ./someDrv.nix { /* ... */ };

This PR introduces the problems listed above. Please fix them before merging, otherwise the base branch would break.