dante: add extra build inputs
Add PAM, SASL and UPnP support.
This commit is contained in:
parent
2821265dfd
commit
1f1124859d
@ -1,6 +1,6 @@
|
|||||||
{ stdenv, fetchurl }:
|
{ stdenv, fetchurl, pam, libkrb5, cyrus_sasl, miniupnpc }:
|
||||||
|
|
||||||
stdenv.mkDerivation (rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "dante-${version}";
|
name = "dante-${version}";
|
||||||
version = "1.4.2";
|
version = "1.4.2";
|
||||||
|
|
||||||
@ -9,15 +9,17 @@ stdenv.mkDerivation (rec {
|
|||||||
sha256 = "1bfafnm445afrmyxvvcl8ckq0p59yzykmr3y8qvryzrscd85g8ms";
|
sha256 = "1bfafnm445afrmyxvvcl8ckq0p59yzykmr3y8qvryzrscd85g8ms";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
buildInputs = [ pam libkrb5 cyrus_sasl miniupnpc ];
|
||||||
|
|
||||||
configureFlags = [
|
configureFlags = [
|
||||||
"--with-libc=libc.so.6"
|
"--with-libc=libc.so.6"
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
description = "A circuit-level SOCKS client/server that can be used to provide convenient and secure network connectivity.";
|
description = "A circuit-level SOCKS client/server that can be used to provide convenient and secure network connectivity.";
|
||||||
homepage = "https://www.inet.no/dante/";
|
homepage = "https://www.inet.no/dante/";
|
||||||
maintainers = [ stdenv.lib.maintainers.arobyn ];
|
maintainers = [ maintainers.arobyn ];
|
||||||
license = stdenv.lib.licenses.bsdOriginal;
|
license = licenses.bsdOriginal;
|
||||||
platforms = stdenv.lib.platforms.linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
})
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user