Make platforms.allBut accept a list rather than a single platform

This commit is contained in:
Luca Bruno
2014-08-09 12:31:33 +02:00
parent 9300470b5e
commit b331ae33d7
12 changed files with 22 additions and 22 deletions
+5 -5
View File
@@ -23,7 +23,7 @@ with import ./release-lib.nix { inherit supportedSystems; };
aterm28 = all;
autoconf = all;
automake = all;
avahi = allBut "i686-cygwin"; # Cygwin builds fail
avahi = allBut cygwin; # Cygwin builds fail
bash = all;
bashInteractive = all;
bc = all;
@@ -59,7 +59,7 @@ with import ./release-lib.nix { inherit supportedSystems; };
gnumake = all;
gnupatch = all;
gnupg = linux;
gnuplot = allBut "i686-cygwin";
gnuplot = allBut cygwin;
gnused = all;
gnutar = all;
gnutls = linux;
@@ -142,7 +142,7 @@ with import ./release-lib.nix { inherit supportedSystems; };
policykit = linux;
portmap = linux;
procps = linux;
python = allBut "i686-cygwin";
python = allBut cygwin;
pythonFull = linux;
readline = all;
rlwrap = all;
@@ -152,9 +152,9 @@ with import ./release-lib.nix { inherit supportedSystems; };
scrot = linux;
sdparm = linux;
sharutils = all;
sloccount = allBut "i686-cygwin";
sloccount = allBut cygwin;
smartmontools = all;
sqlite = allBut "i686-cygwin";
sqlite = allBut cygwin;
squid = linux;
ssmtp = linux;
stdenv = prio 175 all;