at 23.05-pre 21 lines 664 B view raw
1{ lib, stdenv, fetchurl, openssl, zlib, ncurses }: 2 3stdenv.mkDerivation rec { 4 pname = "polygraph"; 5 version = "4.13.0"; 6 7 src = fetchurl { 8 url = "http://www.web-polygraph.org/downloads/srcs/polygraph-${version}-src.tgz"; 9 sha256 = "1rwzci3n7q33hw3spd79adnclzwgwlxcisc9szzjmcjqhbkcpj1a"; 10 }; 11 12 buildInputs = [ openssl zlib ncurses ]; 13 14 meta = with lib; { 15 homepage = "http://www.web-polygraph.org"; 16 description = "Performance testing tool for caching proxies, origin server accelerators, L4/7 switches, content filters, and other Web intermediaries"; 17 platforms = platforms.linux; 18 license = licenses.asl20; 19 maintainers = [ ]; 20 }; 21}