ci/eval: add rebuildsByPlatform to the comparison result (#363751)
[NixPkgs.git] / pkgs / by-name / sl / slowhttptest / package.nix
blob1bb1d18a96788a9610cffe032b60ed85d727d985
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   openssl,
6 }:
8 stdenv.mkDerivation rec {
9   pname = "slowhttptest";
10   version = "1.9.0";
12   src = fetchFromGitHub {
13     owner = "shekyan";
14     repo = pname;
15     rev = "v${version}";
16     sha256 = "sha256-rIvd3LykVAbDXtFWZ1EQ+QKeALzqwK6pq7In0BsCOFo=";
17   };
19   buildInputs = [ openssl ];
21   meta = with lib; {
22     description = "Application Layer DoS attack simulator";
23     homepage = "https://github.com/shekyan/slowhttptest";
24     license = with licenses; [ asl20 ];
25     maintainers = with maintainers; [ fab ];
26     mainProgram = "slowhttptest";
27   };