summary refs log tree commit diff
path: root/pkgs/development/tools/misc/cflow/default.nix
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2012-11-29 14:10:49 +0100
committerEelco Dolstra <eelco.dolstra@logicblox.com>2012-11-29 14:10:49 +0100
commit72684fb42fc2a5da68746098eb85fcc4935e9b3d (patch)
treeeabf0c6bcd4356e8f670412fd140d0ef619b0437 /pkgs/development/tools/misc/cflow/default.nix
parent4b48d05c58bb97c016c05f4014ac3c32f7f2d548 (diff)
downloadnixlib-72684fb42fc2a5da68746098eb85fcc4935e9b3d.tar
nixlib-72684fb42fc2a5da68746098eb85fcc4935e9b3d.tar.gz
nixlib-72684fb42fc2a5da68746098eb85fcc4935e9b3d.tar.bz2
nixlib-72684fb42fc2a5da68746098eb85fcc4935e9b3d.tar.lz
nixlib-72684fb42fc2a5da68746098eb85fcc4935e9b3d.tar.xz
nixlib-72684fb42fc2a5da68746098eb85fcc4935e9b3d.tar.zst
nixlib-72684fb42fc2a5da68746098eb85fcc4935e9b3d.zip
Remove support for the obsolete powerpc-darwin and i686-darwin platforms
Diffstat (limited to 'pkgs/development/tools/misc/cflow/default.nix')
-rw-r--r--pkgs/development/tools/misc/cflow/default.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/pkgs/development/tools/misc/cflow/default.nix b/pkgs/development/tools/misc/cflow/default.nix
index 041191640bd4..d9be5802fa95 100644
--- a/pkgs/development/tools/misc/cflow/default.nix
+++ b/pkgs/development/tools/misc/cflow/default.nix
@@ -15,11 +15,10 @@ stdenv.mkDerivation rec {
   '';
 
   buildInputs = [ gettext ] ++
-
     # We don't have Emacs/GTK/etc. on {Dar,Cyg}win.
     stdenv.lib.optional
       (! (stdenv.lib.lists.any (x: stdenv.system == x)
-              [ "i686-darwin" "i686-cygwin" ]))
+              [ "i686-cygwin" ]))
       emacs;
 
   doCheck = true;