Revert "libssh2: Modernize Build"
This reverts commit e9ee5f99615d0980538e60b1079c8438f8d8135c.
This commit is contained in:
parent
487736dc62
commit
e3356b396d
@ -1,73 +1,19 @@
|
|||||||
{ stdenv, fetchurl
|
{stdenv, fetchurlBoot, openssl, zlib}:
|
||||||
|
|
||||||
# Optional Dependencies
|
|
||||||
, zlib ? null
|
|
||||||
|
|
||||||
# Crypto Dependencies
|
|
||||||
, openssl ? null, libgcrypt ? null
|
|
||||||
}:
|
|
||||||
|
|
||||||
let
|
|
||||||
mkFlag = trueStr: falseStr: cond: name: val:
|
|
||||||
if cond == null then null else
|
|
||||||
"--${if cond != false then trueStr else falseStr}${name}${if val != null && cond != false then "=${val}" else ""}";
|
|
||||||
mkEnable = mkFlag "enable-" "disable-";
|
|
||||||
mkWith = mkFlag "with-" "without-";
|
|
||||||
mkOther = mkFlag "" "" true;
|
|
||||||
|
|
||||||
shouldUsePkg = pkg: if pkg != null && stdenv.lib.any (x: x == stdenv.system) pkg.meta.platforms then pkg else null;
|
|
||||||
|
|
||||||
# Prefer openssl
|
|
||||||
cryptoStr = if shouldUsePkg openssl != null then "openssl"
|
|
||||||
else if shouldUsePkg libgcrypt != null then "libgcrypt"
|
|
||||||
else "none";
|
|
||||||
crypto = {
|
|
||||||
openssl = openssl;
|
|
||||||
libgcrypt = libgcrypt;
|
|
||||||
none = null;
|
|
||||||
}.${cryptoStr};
|
|
||||||
|
|
||||||
optZlib = shouldUsePkg zlib;
|
|
||||||
in
|
|
||||||
|
|
||||||
assert crypto != null;
|
|
||||||
|
|
||||||
with stdenv.lib;
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "libssh2-1.5.0";
|
name = "libssh2-1.5.0";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurlBoot {
|
||||||
url = "${meta.homepage}/download/${name}.tar.gz";
|
url = "${meta.homepage}/download/${name}.tar.gz";
|
||||||
sha256 = "1z6hfgak00yz0azx6lk6n688mywhdxx03j6sdf95p3w6ssnnn6c3";
|
sha256 = "1z6hfgak00yz0azx6lk6n688mywhdxx03j6sdf95p3w6ssnnn6c3";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ crypto optZlib ];
|
buildInputs = [ openssl zlib ];
|
||||||
|
|
||||||
configureFlags = [
|
|
||||||
(mkWith (cryptoStr == "openssl") "openssl" null)
|
|
||||||
(mkWith (cryptoStr == "libgcrypt") "libgcrypt" null)
|
|
||||||
(mkWith false "wicng" null)
|
|
||||||
(mkWith optZlib "libz" null)
|
|
||||||
(mkEnable false "crypt-none" null)
|
|
||||||
(mkEnable false "mac-none" null)
|
|
||||||
(mkEnable true "gex-new" null)
|
|
||||||
(mkEnable false "debug" null)
|
|
||||||
(mkEnable false "examples-build" null)
|
|
||||||
];
|
|
||||||
|
|
||||||
postInstall = optionalString (optZlib != null) ''
|
|
||||||
sed -i 's,\(-lz\),-L${optZlib}/lib \1,' $out/lib/libssh2.la
|
|
||||||
'' + optionalString (cryptoStr == "openssl") ''
|
|
||||||
sed -i 's,\(-lssl\|-lcrypto\),-L${openssl}/lib \1,' $out/lib/libssh2.la
|
|
||||||
'' + optionalString (cryptoStr == "libgcrypt") ''
|
|
||||||
sed -i 's,\(-lgcrypt\),-L${libgcrypt}/lib \1,' $out/lib/libssh2.la
|
|
||||||
'';
|
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "A client-side C library implementing the SSH2 protocol";
|
description = "A client-side C library implementing the SSH2 protocol";
|
||||||
homepage = http://www.libssh2.org;
|
homepage = http://www.libssh2.org;
|
||||||
license = licenses.gpl2;
|
platforms = stdenv.lib.platforms.all;
|
||||||
platforms = platforms.all;
|
maintainers = [ stdenv.lib.maintainers.urkud ];
|
||||||
maintainers = with maintainers; [ urkud wkennington ];
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -7115,9 +7115,7 @@ let
|
|||||||
|
|
||||||
libssh = callPackage ../development/libraries/libssh { };
|
libssh = callPackage ../development/libraries/libssh { };
|
||||||
|
|
||||||
libssh2 = callPackage ../development/libraries/libssh2 {
|
libssh2 = callPackage ../development/libraries/libssh2 { };
|
||||||
fetchurl = fetchurlBoot;
|
|
||||||
};
|
|
||||||
|
|
||||||
libstartup_notification = callPackage ../development/libraries/startup-notification { };
|
libstartup_notification = callPackage ../development/libraries/startup-notification { };
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user