disable darwin-arch.patch on openssl >= 1.0.2

+1 -1
+1 -1
pkgs/development/libraries/openssl/default.nix
··· 21 patches = 22 [ ./use-etc-ssl-certs.patch ] 23 ++ optional stdenv.isCygwin ./1.0.1-cygwin64.patch 24 - ++ optional (stdenv.isDarwin || (stdenv ? cross && stdenv.cross.libc == "libSystem")) ./darwin-arch.patch; 25 26 nativeBuildInputs = [ perl ]; 27 buildInputs = stdenv.lib.optional withCryptodev cryptodevHeaders;
··· 21 patches = 22 [ ./use-etc-ssl-certs.patch ] 23 ++ optional stdenv.isCygwin ./1.0.1-cygwin64.patch 24 + ++ optional (stdenv.lib.versionOlder version "1.0.2" && (stdenv.isDarwin || (stdenv ? cross && stdenv.cross.libc == "libSystem"))) ./darwin-arch.patch; 25 26 nativeBuildInputs = [ perl ]; 27 buildInputs = stdenv.lib.optional withCryptodev cryptodevHeaders;