2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl, which}:
|
2011-10-09 23:28:41 +01:00
|
|
|
|
2015-11-28 22:46:52 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "cntlm";
|
2015-11-28 22:46:52 +00:00
|
|
|
version = "0.92.3";
|
2011-10-09 23:28:41 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "mirror://sourceforge/cntlm/${pname}-${version}.tar.gz";
|
2015-11-28 22:46:52 +00:00
|
|
|
sha256 = "1632szz849wasvh5sm6rm1zbvbrkq35k7kcyvx474gyl4h4x2flw";
|
2011-10-09 23:28:41 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ which ];
|
|
|
|
|
2021-01-15 09:19:50 +00:00
|
|
|
preConfigure = lib.optionalString stdenv.isDarwin ''
|
2018-07-25 02:35:02 +01:00
|
|
|
substituteInPlace configure --replace "xlc_r gcc" "xlc_r gcc $CC"
|
|
|
|
substitute Makefile Makefile.$CC --replace "CC=gcc" "CC=$CC"
|
|
|
|
'';
|
|
|
|
|
2011-10-09 23:28:41 +01:00
|
|
|
installPhase = ''
|
2012-01-18 20:16:00 +00:00
|
|
|
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/;
|
2011-10-09 23:28:41 +01:00
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2014-08-24 15:21:08 +01:00
|
|
|
description = "NTLM/NTLMv2 authenticating HTTP proxy";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://cntlm.sourceforge.net/";
|
2015-11-28 22:46:52 +00:00
|
|
|
license = licenses.gpl2;
|
2018-07-25 02:35:02 +01:00
|
|
|
maintainers =
|
2015-11-28 22:46:52 +00:00
|
|
|
[
|
|
|
|
maintainers.qknight
|
|
|
|
maintainers.markWot
|
2018-07-25 02:35:02 +01:00
|
|
|
maintainers.carlosdagos
|
2015-11-28 22:46:52 +00:00
|
|
|
];
|
2018-07-25 02:35:02 +01:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2011-10-09 23:28:41 +01:00
|
|
|
};
|
|
|
|
}
|