28 lines
898 B
Nix
28 lines
898 B
Nix
{ lib, stdenv, fetchurl, pam, libkrb5, cyrus_sasl, miniupnpc }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "dante";
|
|
version = "1.4.3";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.inet.no/dante/files/${pname}-${version}.tar.gz";
|
|
sha256 = "0pbahkj43rx7rmv2x40mf5p3g3x9d6i2sz7pzglarf54w5ghd2j1";
|
|
};
|
|
|
|
buildInputs = [ pam libkrb5 cyrus_sasl miniupnpc ];
|
|
|
|
configureFlags = if !stdenv.isDarwin
|
|
then [ "--with-libc=libc.so.6" ]
|
|
else [ "--with-libc=libc${stdenv.targetPlatform.extensions.sharedLibrary}" ];
|
|
|
|
dontAddDisableDepTrack = stdenv.isDarwin;
|
|
|
|
meta = with 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 = [ maintainers.arobyn ];
|
|
license = licenses.bsdOriginal;
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
};
|
|
}
|