tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
disable darwin-arch.patch on openssl >= 1.0.2
Jude Taylor
10 years ago
b6ff8f93
b16dc8dc
+1
-1
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
openssl
default.nix
+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;