nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at devShellTools-shell 32 lines 691 B view raw
1{ 2 lib, 3 stdenv, 4 fetchurl, 5 openssl, 6 zlib, 7 ncurses, 8}: 9 10stdenv.mkDerivation rec { 11 pname = "polygraph"; 12 version = "4.13.0"; 13 14 src = fetchurl { 15 url = "http://www.web-polygraph.org/downloads/srcs/polygraph-${version}-src.tgz"; 16 sha256 = "1rwzci3n7q33hw3spd79adnclzwgwlxcisc9szzjmcjqhbkcpj1a"; 17 }; 18 19 buildInputs = [ 20 openssl 21 zlib 22 ncurses 23 ]; 24 25 meta = with lib; { 26 homepage = "http://www.web-polygraph.org"; 27 description = "Performance testing tool for caching proxies, origin server accelerators, L4/7 switches, content filters, and other Web intermediaries"; 28 platforms = platforms.linux; 29 license = licenses.asl20; 30 maintainers = [ ]; 31 }; 32}