dput-ng: fix eval (#364540)
[NixPkgs.git] / pkgs / by-name / po / polygraph / package.nix
blob9629cf098cc2c71c056aa8914d36ccbfe0200777
2   lib,
3   stdenv,
4   fetchurl,
5   openssl,
6   zlib,
7   ncurses,
8 }:
10 stdenv.mkDerivation rec {
11   pname = "polygraph";
12   version = "4.13.0";
14   src = fetchurl {
15     url = "http://www.web-polygraph.org/downloads/srcs/polygraph-${version}-src.tgz";
16     sha256 = "1rwzci3n7q33hw3spd79adnclzwgwlxcisc9szzjmcjqhbkcpj1a";
17   };
19   buildInputs = [
20     openssl
21     zlib
22     ncurses
23   ];
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   };