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
+1 -1
View File
@@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
homepage = http://www.cybercom.net/~dcoffin/dcraw/;
description = "Decoder for many camera raw picture formats";
license = "free";
platforms = stdenv.lib.platforms.allBut "i686-cygwin";
platforms = with stdenv.lib.platforms; allBut cygwin;
maintainers = [ stdenv.lib.maintainers.urkud ];
};
}