Remove default for openssl
Suggested by matthewbauer review.
This commit is contained in:
parent
36701d4af7
commit
322b2043f9
@ -1,6 +1,5 @@
|
|||||||
{ stdenv, lib, buildPackages
|
{ stdenv, lib, buildPackages
|
||||||
, autoreconfHook, texinfo, fetchurl, perl, xz, libiconv, gmp ? null
|
, autoreconfHook, texinfo, fetchurl, perl, xz, libiconv, openssl, gmp ? null
|
||||||
, openssl ? null
|
|
||||||
, hostPlatform, buildPlatform
|
, hostPlatform, buildPlatform
|
||||||
, aclSupport ? false, acl ? null
|
, aclSupport ? false, acl ? null
|
||||||
, attrSupport ? false, attr ? null
|
, attrSupport ? false, attr ? null
|
||||||
@ -38,7 +37,7 @@ stdenv.mkDerivation rec {
|
|||||||
outputs = [ "out" "info" ];
|
outputs = [ "out" "info" ];
|
||||||
|
|
||||||
nativeBuildInputs = [ perl xz.bin ];
|
nativeBuildInputs = [ perl xz.bin ];
|
||||||
configureFlags = optional (openssl != null) "--with-openssl"
|
configureFlags = [ "--with-openssl" ]
|
||||||
++ optional (singleBinary != false)
|
++ optional (singleBinary != false)
|
||||||
("--enable-single-binary" + optionalString (isString singleBinary) "=${singleBinary}")
|
("--enable-single-binary" + optionalString (isString singleBinary) "=${singleBinary}")
|
||||||
++ optional hostPlatform.isSunOS "ac_cv_func_inotify_init=no"
|
++ optional hostPlatform.isSunOS "ac_cv_func_inotify_init=no"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user