mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-18 02:05:51 +03:00
curl: build statically on windows
This commit is contained in:
parent
45cc6e2a42
commit
1660098d84
@ -77,7 +77,11 @@ stdenv.mkDerivation rec {
|
||||
++ stdenv.lib.optional gssSupport "--with-gssapi=${kerberos.dev}"
|
||||
# For the 'urandom', maybe it should be a cross-system option
|
||||
++ stdenv.lib.optional (stdenv.hostPlatform != stdenv.buildPlatform)
|
||||
"--with-random=/dev/urandom";
|
||||
"--with-random=/dev/urandom"
|
||||
++ stdenv.lib.optionals stdenv.hostPlatform.isWindows [
|
||||
"--disable-shared"
|
||||
"--enable-static"
|
||||
];
|
||||
|
||||
CXX = "${stdenv.cc.targetPrefix}c++";
|
||||
CXXCPP = "${stdenv.cc.targetPrefix}c++ -E";
|
||||
|
@ -81,7 +81,11 @@ stdenv.mkDerivation rec {
|
||||
++ stdenv.lib.optional gssSupport "--with-gssapi=${kerberos.dev}"
|
||||
# For the 'urandom', maybe it should be a cross-system option
|
||||
++ stdenv.lib.optional (stdenv.hostPlatform != stdenv.buildPlatform)
|
||||
"--with-random=/dev/urandom";
|
||||
"--with-random=/dev/urandom"
|
||||
++ stdenv.lib.optionals stdenv.hostPlatform.isWindows [
|
||||
"--disable-shared"
|
||||
"--enable-static"
|
||||
];
|
||||
|
||||
CXX = "${stdenv.cc.targetPrefix}c++";
|
||||
CXXCPP = "${stdenv.cc.targetPrefix}c++ -E";
|
||||
|
Loading…
Reference in New Issue
Block a user