about summary refs log tree commit diff
path: root/pkgs/test/nixpkgs-check-by-name/tests/non-syntactical-callPackage-by-name/expected
blob: e09e931bb658ef67a61cba57fedfab6919bb41a4 (plain) (blame)
1
2
3
4
5
6
7
8
9
- Because pkgs/by-name/fo/foo exists, the attribute `pkgs.foo` must be defined like

    foo = callPackage ./pkgs/by-name/fo/foo/package.nix { /* ... */ };

  However, in this PR, it isn't defined that way. See the definition in all-packages.nix:4

    foo = self.bar;

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