about summary refs log tree commit diff
path: root/pkgs/tools/graphics
diff options
context:
space:
mode:
authorLuca Bruno <lucabru@src.gnome.org>2014-08-09 12:28:16 +0200
committerLuca Bruno <lucabru@src.gnome.org>2014-08-09 12:31:33 +0200
commitb331ae33d7c35fdda5cfa0ede0fc0f21f1b6224c (patch)
tree06d650bed07c96c115a630ebe517a257dc6e1bc2 /pkgs/tools/graphics
parent9300470b5ec507806a30e3de8edd3a695ac585fa (diff)
downloadnixlib-b331ae33d7c35fdda5cfa0ede0fc0f21f1b6224c.tar
nixlib-b331ae33d7c35fdda5cfa0ede0fc0f21f1b6224c.tar.gz
nixlib-b331ae33d7c35fdda5cfa0ede0fc0f21f1b6224c.tar.bz2
nixlib-b331ae33d7c35fdda5cfa0ede0fc0f21f1b6224c.tar.lz
nixlib-b331ae33d7c35fdda5cfa0ede0fc0f21f1b6224c.tar.xz
nixlib-b331ae33d7c35fdda5cfa0ede0fc0f21f1b6224c.tar.zst
nixlib-b331ae33d7c35fdda5cfa0ede0fc0f21f1b6224c.zip
Make platforms.allBut accept a list rather than a single platform
Diffstat (limited to 'pkgs/tools/graphics')
-rw-r--r--pkgs/tools/graphics/dcraw/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/graphics/dcraw/default.nix b/pkgs/tools/graphics/dcraw/default.nix
index b8d8dd5f48ad..72b50bd4e773 100644
--- a/pkgs/tools/graphics/dcraw/default.nix
+++ b/pkgs/tools/graphics/dcraw/default.nix
@@ -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 ];
   };
 }