summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorSpencer Whitt <sw@swhitt.me>2015-05-14 18:03:45 -0400
committerSpencer Whitt <sw@swhitt.me>2015-05-15 11:58:21 -0400
commit4c76dda4dd6d9e85504d24bde076c24ed678a2a0 (patch)
treee40f8107317387df5101c71e8f08b4b747edafeb /pkgs/tools
parent3f6b56812cd5b301769c764ac79173884bdafefc (diff)
downloadnixpkgs-4c76dda4dd6d9e85504d24bde076c24ed678a2a0.tar
nixpkgs-4c76dda4dd6d9e85504d24bde076c24ed678a2a0.tar.gz
nixpkgs-4c76dda4dd6d9e85504d24bde076c24ed678a2a0.tar.bz2
nixpkgs-4c76dda4dd6d9e85504d24bde076c24ed678a2a0.tar.lz
nixpkgs-4c76dda4dd6d9e85504d24bde076c24ed678a2a0.tar.xz
nixpkgs-4c76dda4dd6d9e85504d24bde076c24ed678a2a0.tar.zst
nixpkgs-4c76dda4dd6d9e85504d24bde076c24ed678a2a0.zip
curl 7.15: Disable on Darwin
Build is failing and this version of curl is not used for anything
useful on Darwin, so it's not worth fixing.
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/networking/curl/7.15.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/networking/curl/7.15.nix b/pkgs/tools/networking/curl/7.15.nix
index 2b13437d95c..4e533878ec1 100644
--- a/pkgs/tools/networking/curl/7.15.nix
+++ b/pkgs/tools/networking/curl/7.15.nix
@@ -75,6 +75,6 @@ stdenv.mkDerivation rec {
   meta = {
     homepage = "http://curl.haxx.se/";
     description = "A command line tool for transferring files with URL syntax";
-    platforms = stdenv.lib.platforms.all;
+    platforms = with stdenv.lib.platforms; allBut darwin;
   };
 }