nixpkgs/pkgs/servers/dante/default.nix

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

49 lines
1.8 KiB
Nix
Raw Normal View History

2022-09-29 15:06:12 +00:00
{ lib, stdenv, fetchurl, fetchpatch, autoreconfHook
, pam, libkrb5, cyrus_sasl, miniupnpc, libxcrypt }:
2016-10-14 05:05:46 +00:00
let
remove_getaddrinfo_checks = stdenv.hostPlatform.isMips64 || !(stdenv.buildPlatform.canExecute stdenv.hostPlatform);
in
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
};
2023-04-06 02:21:22 +00:00
nativeBuildInputs = [ autoreconfHook ];
2022-09-29 15:06:12 +00:00
buildInputs = [ pam libkrb5 cyrus_sasl miniupnpc libxcrypt ];
2019-11-19 09:16:25 +00:00
configureFlags = if !stdenv.isDarwin
then [ "--with-libc=libc.so.6" ]
else [ "--with-libc=libc${stdenv.hostPlatform.extensions.sharedLibrary}" ];
2019-09-10 12:19:18 +00:00
dontAddDisableDepTrack = stdenv.isDarwin;
2016-10-14 05:05:46 +00:00
patches = [
# Fixes several issues with `osint.m4` that causes incorrect check failures when using newer
# versions of clang: missing `stdint.h` for `uint8_t` and unused `sa_len_ptr`.
./clang-osint-m4.patch
] ++ lib.optionals remove_getaddrinfo_checks [
(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=";
})
];
postPatch = ''
substituteInPlace include/redefgen.sh --replace 'PATH=/bin:/usr/bin:/sbin:/usr/sbin' ""
'';
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
};
}