Partially revert 755e824

Reinstates the error message that helps migration of forks.
Same should be done for super *if* it is to be removed.
This commit is contained in:
Robert Hensing
2019-02-03 18:22:22 +07:00
parent bd0bb9e497
commit 055ac8e495
2 changed files with 19 additions and 2 deletions
+4 -1
View File
@@ -89,7 +89,10 @@ let
splice = self: super: import ./splice.nix lib self (buildPackages != null);
allPackages = self: super:
import ./all-packages.nix { inherit lib noSysDirs config; } self;
let res = import ./all-packages.nix
{ inherit lib noSysDirs config; }
res self super;
in res;
aliases = self: super: lib.optionalAttrs (config.allowAliases or true) (import ./aliases.nix lib self super);