mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 17:03:01 +00:00
e0464e4788
In preparation for the deprecation of `stdenv.isX`. These shorthands are not conducive to cross-compilation because they hide the platforms. Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way One example of why this is bad and especially affects compiler packages https://www.github.com/NixOS/nixpkgs/pull/343059 There are too many files to go through manually but a treewide should get users thinking when they see a `hostPlatform.isX` in a place where it doesn't make sense. ``` fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is" fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is" ```
51 lines
1.9 KiB
Nix
51 lines
1.9 KiB
Nix
{ lib, stdenv, fetchurl, fetchpatch, autoreconfHook
|
|
, pam, libkrb5, cyrus_sasl, miniupnpc, libxcrypt }:
|
|
|
|
let
|
|
remove_getaddrinfo_checks = stdenv.hostPlatform.isMips64 || !(stdenv.buildPlatform.canExecute stdenv.hostPlatform);
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
pname = "dante";
|
|
version = "1.4.3";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.inet.no/dante/files/${pname}-${version}.tar.gz";
|
|
sha256 = "0pbahkj43rx7rmv2x40mf5p3g3x9d6i2sz7pzglarf54w5ghd2j1";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
buildInputs = [ pam libkrb5 cyrus_sasl miniupnpc libxcrypt ];
|
|
|
|
configureFlags = if !stdenv.hostPlatform.isDarwin
|
|
then [ "--with-libc=libc.so.6" ]
|
|
else [ "--with-libc=libc${stdenv.hostPlatform.extensions.sharedLibrary}" ];
|
|
|
|
dontAddDisableDepTrack = stdenv.hostPlatform.isDarwin;
|
|
|
|
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
|
|
# Fixes build with miniupnpc 2.2.8.
|
|
./dante-1.4.3-miniupnpc-2.2.8.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 = "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;
|
|
};
|
|
}
|