2018-04-16 12:11:23 +00:00
|
|
|
{ stdenv, fetchurl, pam, libkrb5, cyrus_sasl, miniupnpc }:
|
2016-10-14 05:05:46 +00:00
|
|
|
|
2018-04-16 12:11:23 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "dante";
|
2018-02-26 02:48:49 +00:00
|
|
|
version = "1.4.2";
|
2016-10-14 05:05:46 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 12:41:18 +00:00
|
|
|
url = "https://www.inet.no/dante/files/${pname}-${version}.tar.gz";
|
2018-02-26 02:48:49 +00:00
|
|
|
sha256 = "1bfafnm445afrmyxvvcl8ckq0p59yzykmr3y8qvryzrscd85g8ms";
|
2016-10-14 05:05:46 +00:00
|
|
|
};
|
|
|
|
|
2018-04-16 12:11:23 +00:00
|
|
|
buildInputs = [ pam libkrb5 cyrus_sasl miniupnpc ];
|
|
|
|
|
2019-11-19 09:16:25 +00:00
|
|
|
configureFlags = if !stdenv.isDarwin
|
|
|
|
then [ "--with-libc=libc.so.6" ]
|
|
|
|
else [ "--with-libc=libc${stdenv.targetPlatform.extensions.sharedLibrary}" ];
|
2019-09-10 12:19:18 +00:00
|
|
|
|
|
|
|
dontAddDisableDepTrack = stdenv.isDarwin;
|
2016-10-14 05:05:46 +00:00
|
|
|
|
2018-04-16 12:11:23 +00:00
|
|
|
meta = with stdenv.lib; {
|
2016-10-14 05:05:46 +00:00
|
|
|
description = "A circuit-level SOCKS client/server that can be used to provide convenient and secure network connectivity.";
|
|
|
|
homepage = "https://www.inet.no/dante/";
|
2018-04-16 12:11:23 +00:00
|
|
|
maintainers = [ maintainers.arobyn ];
|
|
|
|
license = licenses.bsdOriginal;
|
2019-09-10 12:19:18 +00:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2016-10-14 05:05:46 +00:00
|
|
|
};
|
2018-04-16 12:11:23 +00:00
|
|
|
}
|