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