1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-19 04:02:10 +00:00

typo in update.nix

This commit is contained in:
Rok Garbas 2016-12-16 16:11:15 +01:00
parent b7cfbf96d6
commit b25475a9be

View file

@ -16,7 +16,7 @@ let
result = builtins.tryEval (
if pkgs.lib.isDerivation pkg && cond name pkg
then [(return name pkg)]
else if pkg.recurseForFerivations or false || pkg.recureseForRelease or false
else if pkg.recurseForDerivations or false || pkg.recurseForRelease or false
then packagesWith cond return pkg
else []
);