mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
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}";
|
||||
version = "1.4.2";
|
||||
|
||||
@ -9,15 +9,17 @@ stdenv.mkDerivation (rec {
|
||||
sha256 = "1bfafnm445afrmyxvvcl8ckq0p59yzykmr3y8qvryzrscd85g8ms";
|
||||
};
|
||||
|
||||
buildInputs = [ pam libkrb5 cyrus_sasl miniupnpc ];
|
||||
|
||||
configureFlags = [
|
||||
"--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.";
|
||||
homepage = "https://www.inet.no/dante/";
|
||||
maintainers = [ stdenv.lib.maintainers.arobyn ];
|
||||
license = stdenv.lib.licenses.bsdOriginal;
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
maintainers = [ maintainers.arobyn ];
|
||||
license = licenses.bsdOriginal;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
})
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user