forked from mirrors/nixpkgs
disable darwin-arch.patch on openssl >= 1.0.2
This commit is contained in:
parent
b16dc8dcc5
commit
b6ff8f9314
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue