summary refs log blame commit diff
path: root/pkgs/servers/polipo/default.nix
blob: a6b65cde89f9ffaf0492a3253be8677e662b3244 (plain) (tree)
1
2
3
4
5
6
7
8
9
                              
 
                         
                   
                    

                  
                                                                                                       
                                                                    








                                                                       
                                                       
                              


                                                                                 
    
 
{ stdenv, fetchurl, texinfo }:

stdenv.mkDerivation rec {
  pname = "polipo";
  version = "1.1.1";

  src = fetchurl {
    url = "http://www.pps.univ-paris-diderot.fr/~jch/software/files/polipo/${pname}-${version}.tar.gz";
    sha256 = "05g09sg9qkkhnc2mxldm1w1xkxzs2ylybkjzs28w8ydbjc3pand2";
  };

  buildInputs = [ texinfo ];
  makeFlags = [ "PREFIX=$(out)" "LOCAL_ROOT=$(out)/share/polipo/www" ];

  meta = with stdenv.lib; {
    homepage = http://www.pps.jussieu.fr/~jch/software/polipo/;
    description = "A small and fast caching web proxy";
    license = licenses.mit;
    maintainers = with maintainers; [ phreedom ehmry ];
    platforms = platforms.all;
    knownVulnerabilities = [
      "Unmaintained upstream: https://github.com/jech/polipo/commit/4d42ca1b5849"
    ];
  };
}