2015-02-12 14:28:31 +01:00
|
|
|
{ stdenv, fetchurl, openssl, zlib, ncurses }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-08-08 13:32:56 +02:00
|
|
|
name = "polygraph-4.12.0";
|
2015-02-12 14:28:31 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.web-polygraph.org/downloads/srcs/${name}-src.tgz";
|
2018-08-08 13:32:56 +02:00
|
|
|
sha256 = "1anrdc30yi9pb67642flmn7w82q37cnc45r9bh15mpbc66yk3kzz";
|
2015-02-12 14:28:31 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ openssl zlib ncurses ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://www.web-polygraph.org;
|
|
|
|
description = "Performance testing tool for caching proxies, origin server accelerators, L4/7 switches, content filters, and other Web intermediaries";
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.lethalman ];
|
|
|
|
};
|
2017-08-29 17:44:08 +02:00
|
|
|
}
|