We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f163dc1 + e98d150 commit f5ad88eCopy full SHA for f5ad88e
pkgs/top-level/aliases.nix
@@ -208,7 +208,7 @@ let
208
# Make sure that we are not shadowing something from all-packages.nix.
209
checkInPkgs =
210
n: alias:
211
- if builtins.hasAttr n super then throw "Alias ${n} is still in all-packages.nix" else alias;
+ if builtins.hasAttr n super then abort "Alias ${n} is still in all-packages.nix" else alias;
212
213
mapAliases =
214
aliases: lib.mapAttrs (n: alias: removeRecurseForDerivations (checkInPkgs n alias)) aliases;
0 commit comments