evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / sl / slowhttptest / package.nix
blob94e60a6a008450dbb5b7fffd25d73c3fadeb38f3
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     mainProgram = "slowhttptest";
26   };