1{ stdenv, fetchurl, openssl, zlib, ncurses }:
2
3stdenv.mkDerivation rec {
4 name = "polygraph-4.11.0";
5
6 src = fetchurl {
7 url = "http://www.web-polygraph.org/downloads/srcs/${name}-src.tgz";
8 sha256 = "1ii60yl3p89qawvl19sd1bkpkw39fz8kpvmc3cawa32nxzbm9pbs";
9 };
10
11 buildInputs = [ openssl zlib ncurses ];
12
13 meta = with stdenv.lib; {
14 homepage = http://www.web-polygraph.org;
15 description = "Performance testing tool for caching proxies, origin server accelerators, L4/7 switches, content filters, and other Web intermediaries";
16 platforms = platforms.linux;
17 maintainers = [ maintainers.lethalman ];
18 };
19}