3
0
Fork 0
forked from mirrors/nixpkgs

disable darwin-arch.patch on openssl >= 1.0.2

This commit is contained in:
Jude Taylor 2016-02-24 13:32:58 -08:00
parent b16dc8dcc5
commit b6ff8f9314

View file

@ -21,7 +21,7 @@ let
patches =
[ ./use-etc-ssl-certs.patch ]
++ optional stdenv.isCygwin ./1.0.1-cygwin64.patch
++ optional (stdenv.isDarwin || (stdenv ? cross && stdenv.cross.libc == "libSystem")) ./darwin-arch.patch;
++ optional (stdenv.lib.versionOlder version "1.0.2" && (stdenv.isDarwin || (stdenv ? cross && stdenv.cross.libc == "libSystem"))) ./darwin-arch.patch;
nativeBuildInputs = [ perl ];
buildInputs = stdenv.lib.optional withCryptodev cryptodevHeaders;