571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
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";
|
|
};
|
|
}
|