mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
treewide: Make explicit that 'dev' output of libssh2 is used
This commit is contained in:
parent
8638a08c9e
commit
d7071caba5
@ -46,7 +46,7 @@ in
|
|||||||
]
|
]
|
||||||
++ stdenv.lib.optional enableJabber "--with-jabber=${minmay}"
|
++ stdenv.lib.optional enableJabber "--with-jabber=${minmay}"
|
||||||
++ stdenv.lib.optional enableSnmp "--with-net-snmp"
|
++ stdenv.lib.optional enableSnmp "--with-net-snmp"
|
||||||
++ stdenv.lib.optional enableSsh "--with-ssh2=${libssh2}"
|
++ stdenv.lib.optional enableSsh "--with-ssh2=${libssh2.dev}"
|
||||||
++ stdenv.lib.optional enableLdap "--with-ldap=${openldap}";
|
++ stdenv.lib.optional enableLdap "--with-ldap=${openldap}";
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
|
@ -38,7 +38,7 @@ stdenv.mkDerivation rec {
|
|||||||
configureFlags = [
|
configureFlags = [
|
||||||
"--with-ca-bundle=/etc/ssl/certs/ca-certificates.crt"
|
"--with-ca-bundle=/etc/ssl/certs/ca-certificates.crt"
|
||||||
( if sslSupport then "--with-ssl=${openssl}" else "--without-ssl" )
|
( if sslSupport then "--with-ssl=${openssl}" else "--without-ssl" )
|
||||||
( if scpSupport then "--with-libssh2=${libssh2}" else "--without-libssh2" )
|
( if scpSupport then "--with-libssh2=${libssh2.dev}" else "--without-libssh2" )
|
||||||
]
|
]
|
||||||
++ stdenv.lib.optional c-aresSupport "--enable-ares=${c-ares}"
|
++ stdenv.lib.optional c-aresSupport "--enable-ares=${c-ares}"
|
||||||
++ stdenv.lib.optional gssSupport "--with-gssapi=${gss}"
|
++ stdenv.lib.optional gssSupport "--with-gssapi=${gss}"
|
||||||
|
@ -52,7 +52,7 @@ stdenv.mkDerivation rec {
|
|||||||
"--with-ca-bundle=/etc/ssl/certs/ca-certificates.crt"
|
"--with-ca-bundle=/etc/ssl/certs/ca-certificates.crt"
|
||||||
"--disable-manual"
|
"--disable-manual"
|
||||||
( if sslSupport then "--with-ssl=${openssl}" else "--without-ssl" )
|
( if sslSupport then "--with-ssl=${openssl}" else "--without-ssl" )
|
||||||
( if scpSupport then "--with-libssh2=${libssh2}" else "--without-libssh2" )
|
( if scpSupport then "--with-libssh2=${libssh2.dev}" else "--without-libssh2" )
|
||||||
( if ldapSupport then "--enable-ldap" else "--disable-ldap" )
|
( if ldapSupport then "--enable-ldap" else "--disable-ldap" )
|
||||||
( if ldapSupport then "--enable-ldaps" else "--disable-ldaps" )
|
( if ldapSupport then "--enable-ldaps" else "--disable-ldaps" )
|
||||||
( if idnSupport then "--with-libidn=${libidn.dev}" else "--without-libidn" )
|
( if idnSupport then "--with-libidn=${libidn.dev}" else "--without-libidn" )
|
||||||
|
Loading…
Reference in New Issue
Block a user