about summary refs log tree commit diff
path: root/pkgs/tools/graphics/dcraw/default.nix
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2018-03-13 18:00:52 -0400
committerJohn Ericson <John.Ericson@Obsidian.Systems>2018-03-14 18:44:42 -0400
commitf79f80dbf267036a96f8eae281c8501482756d03 (patch)
treed2e37a9947ee5b952282025a5f5f5c4bf2090a7f /pkgs/tools/graphics/dcraw/default.nix
parent2d1d83d836e09e50469302101955ea6c58dcd206 (diff)
treewide: get rid of platforms.allBut
Negative reasoning like `allBut` is a bad idea with an open world of
platforms. Concretely, if we add a new, quite different sort of
platform, existing packages with `allBut` will claim they work on it
even though they probably won't.
Diffstat (limited to 'pkgs/tools/graphics/dcraw/default.nix')
-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 66d3a1100804b..30546865bcc11 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 = stdenv.lib.licenses.free;
-    platforms = with stdenv.lib.platforms; allBut cygwin;
+    platforms = stdenv.lib.platforms.unix; # Once had cygwin problems
     maintainers = [ ];
   };
 }