nixpkgs/pkgs/servers/dante/default.nix

26 lines
730 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pam, libkrb5, cyrus_sasl, miniupnpc }:
2016-10-14 05:05:46 +00:00
stdenv.mkDerivation rec {
2016-10-14 05:05:46 +00:00
name = "dante-${version}";
version = "1.4.2";
2016-10-14 05:05:46 +00:00
src = fetchurl {
url = "https://www.inet.no/dante/files/${name}.tar.gz";
sha256 = "1bfafnm445afrmyxvvcl8ckq0p59yzykmr3y8qvryzrscd85g8ms";
2016-10-14 05:05:46 +00:00
};
buildInputs = [ pam libkrb5 cyrus_sasl miniupnpc ];
2016-10-14 05:05:46 +00:00
configureFlags = [
"--with-libc=libc.so.6"
];
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/";
maintainers = [ maintainers.arobyn ];
license = licenses.bsdOriginal;
platforms = platforms.linux;
2016-10-14 05:05:46 +00:00
};
}