nodePackages: fix platform detection

This commit is contained in:
Jaka Hudoklin 2015-04-25 15:18:54 +02:00
parent 4e51a466bd
commit 744b06cc28

View File

@ -64,7 +64,7 @@ let
stdenv.lib.platforms.${removePrefix "!" entry} or [];
in
# Ignore unknown platforms
if filterPlatforms == [] then platforms
if filterPlatforms == [] then (if platforms == [] then nodejs.meta.platforms else platforms)
else
if hasPrefix "!" entry then
subtractLists (intersectLists filterPlatforms nodejs.meta.platforms) platforms