python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / security / slowhttptest / default.nix
blobb4c2b0efeec3b68a8314a2b051efd18fcfe74b6a
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , openssl
5 }:
7 stdenv.mkDerivation rec {
8   pname = "slowhttptest";
9   version = "1.9.0";
11   src = fetchFromGitHub {
12     owner = "shekyan";
13     repo = pname;
14     rev = "v${version}";
15     sha256 = "sha256-rIvd3LykVAbDXtFWZ1EQ+QKeALzqwK6pq7In0BsCOFo=";
16   };
18   buildInputs = [ openssl ];
20   meta = with lib; {
21     description = "Application Layer DoS attack simulator";
22     homepage = "https://github.com/shekyan/slowhttptest";
23     license = with licenses; [ asl20 ];
24     maintainers = with maintainers; [ fab ];
25   };