Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

Add weighttp 0.3

+17
+15
pkgs/tools/networking/weighttp/default.nix
···
··· 1 + { stdenv, fetchurl, python, libev}: 2 + stdenv.mkDerivation { 3 + name = "weighttp-0.3"; 4 + src = fetchurl { 5 + url = http://cgit.lighttpd.net/weighttp.git/snapshot/weighttp-0.3.tar.gz; 6 + sha256 = "0gl83vnip3nj7fdgbwqkmrx7kxp51sri9jfiwd04q9iz8f9bsmz5"; 7 + }; 8 + 9 + buildInputs = [ python libev ]; 10 + installPhase = '' 11 + python waf configure --prefix=$out 12 + python waf build 13 + python waf install 14 + ''; 15 + }
+2
pkgs/top-level/all-packages.nix
··· 1806 libxml2 geoip; 1807 }; 1808 1809 wget = callPackage ../tools/networking/wget { 1810 inherit (perlPackages) LWP; 1811 };
··· 1806 libxml2 geoip; 1807 }; 1808 1809 + weighttp = callPackage ../tools/networking/weighttp { }; 1810 + 1811 wget = callPackage ../tools/networking/wget { 1812 inherit (perlPackages) LWP; 1813 };