nixpkgs/pkgs/servers/dante/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
1.3 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, fetchpatch, pam, libkrb5, cyrus_sasl, miniupnpc, autoreconfHook }:
2016-10-14 05:05:46 +00:00
stdenv.mkDerivation rec {
pname = "dante";
2021-05-01 01:47:23 +00:00
version = "1.4.3";
2016-10-14 05:05:46 +00:00
src = fetchurl {
url = "https://www.inet.no/dante/files/${pname}-${version}.tar.gz";
2021-05-01 01:47:23 +00:00
sha256 = "0pbahkj43rx7rmv2x40mf5p3g3x9d6i2sz7pzglarf54w5ghd2j1";
2016-10-14 05:05:46 +00:00
};
nativeBuildInputs = lib.optional stdenv.hostPlatform.isMips64 autoreconfHook;
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
patches = lib.optional stdenv.hostPlatform.isMips64 [
(fetchpatch {
name = "0002-osdep-m4-Remove-getaddrinfo-too-low-checks.patch";
url = "https://raw.githubusercontent.com/buildroot/buildroot/master/package/dante/0002-osdep-m4-Remove-getaddrinfo-too-low-checks.patch";
sha256 = "sha256-e+qF8lB5tkiA7RlJ+tX5O6KxQrQp33RSPdP1TxU961Y=";
}) ];
meta = with lib; {
description = "A circuit-level SOCKS client/server that can be used to provide convenient and secure network connectivity";
2016-10-14 05:05:46 +00:00
homepage = "https://www.inet.no/dante/";
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
};
}