mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-10 15:04:44 +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" ```
38 lines
1.0 KiB
Nix
38 lines
1.0 KiB
Nix
{ lib, stdenv, fetchurl, which}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "cntlm";
|
|
version = "0.92.3";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/cntlm/${pname}-${version}.tar.gz";
|
|
sha256 = "1632szz849wasvh5sm6rm1zbvbrkq35k7kcyvx474gyl4h4x2flw";
|
|
};
|
|
|
|
buildInputs = [ which ];
|
|
|
|
preConfigure = lib.optionalString stdenv.hostPlatform.isDarwin ''
|
|
substituteInPlace configure --replace "xlc_r gcc" "xlc_r gcc $CC"
|
|
substitute Makefile Makefile.$CC --replace "CC=gcc" "CC=$CC"
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin; cp cntlm $out/bin/;
|
|
mkdir -p $out/share/; cp COPYRIGHT README VERSION doc/cntlm.conf $out/share/;
|
|
mkdir -p $out/man/; cp doc/cntlm.1 $out/man/;
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "NTLM/NTLMv2 authenticating HTTP proxy";
|
|
homepage = "https://cntlm.sourceforge.net/";
|
|
license = licenses.gpl2Only;
|
|
maintainers =
|
|
[
|
|
maintainers.qknight
|
|
maintainers.carlosdagos
|
|
];
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
mainProgram = "cntlm";
|
|
};
|
|
}
|