lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 16.09-beta 31 lines 780 B view raw
1{ stdenv, fetchurl, which}: 2 3stdenv.mkDerivation rec { 4 name = "cntlm-${version}"; 5 version = "0.92.3"; 6 7 src = fetchurl { 8 url = "mirror://sourceforge/cntlm/${name}.tar.gz"; 9 sha256 = "1632szz849wasvh5sm6rm1zbvbrkq35k7kcyvx474gyl4h4x2flw"; 10 }; 11 12 buildInputs = [ which ]; 13 14 installPhase = '' 15 mkdir -p $out/bin; cp cntlm $out/bin/; 16 mkdir -p $out/share/; cp COPYRIGHT README VERSION doc/cntlm.conf $out/share/; 17 mkdir -p $out/man/; cp doc/cntlm.1 $out/man/; 18 ''; 19 20 meta = with stdenv.lib; { 21 description = "NTLM/NTLMv2 authenticating HTTP proxy"; 22 homepage = http://cntlm.sourceforge.net/; 23 license = licenses.gpl2; 24 maintainers = 25 [ 26 maintainers.qknight 27 maintainers.markWot 28 ]; 29 platforms = platforms.linux; 30 }; 31}