nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 stdenv,
4 fetchurl,
5 openssl,
6 zlib,
7 ncurses,
8}:
9
10stdenv.mkDerivation (finalAttrs: {
11 pname = "polygraph";
12 version = "4.13.0";
13
14 src = fetchurl {
15 url = "http://www.web-polygraph.org/downloads/srcs/polygraph-${finalAttrs.version}-src.tgz";
16 sha256 = "1rwzci3n7q33hw3spd79adnclzwgwlxcisc9szzjmcjqhbkcpj1a";
17 };
18
19 buildInputs = [
20 openssl
21 zlib
22 ncurses
23 ];
24
25 meta = {
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 = lib.platforms.linux;
29 license = lib.licenses.asl20;
30 maintainers = [ ];
31 };
32})