about summary refs log tree commit diff
path: root/nixpkgs/pkgs/test/nixpkgs-check-by-name/tests/override-no-file/expected
blob: 807c440dd3d26622b53b56e82a18f59e4142d9bf (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 not a path. See the definition in all-packages.nix:2:

    nonDerivation = self.callPackage ({ someDrv }: someDrv) { };

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