summary refs log tree commit diff
path: root/pkgs/servers/polipo/default.nix
blob: 3e49715b94d104a23d23de90b433fda7579e6383 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, fetchurl, texinfo }:
stdenv.mkDerivation rec {

  name = "polipo-${version}";
  version = "1.0.4.1";

  src = fetchurl {
    url = "http://freehaven.net/~chrisd/polipo/${name}.tar.gz";
    sha256 = "1ykwkyvmdw6fsaj2hc40971pkwf60hvi9c43whijim00qvgbyvwd";
  };

  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 = [ maintainers.phreedom ];
    platforms = platforms.all;
  };
}