about summary refs log tree commit diff
path: root/pkgs/tools/networking/cntlm/default.nix
blob: 45fc56f3ba2d07b15701bfd0408872d799c82bd5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{ 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.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.gpl2;
    maintainers =
      [
        maintainers.qknight
        maintainers.carlosdagos
      ];
    platforms = platforms.linux ++ platforms.darwin;
    mainProgram = "cntlm";
  };
}