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.
This commit is contained in:
Spencer Whitt 2015-05-14 18:03:45 -04:00
parent 3f6b56812c
commit 4c76dda4dd
1 changed files with 1 additions and 1 deletions

View File

@ -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;
};
}