Merge pull request #142469 from bryanasdev000/ddosify

ddosify: init at v0.4.1
conduit-nginx
Maciej Krüger 2021-10-22 01:26:57 +02:00 committed by GitHub
commit 2b24fa4db8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,34 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "ddosify";
version = "0.4.1";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "v${version}";
sha256 = "sha256-z7jYnEZSHh/Omg5DMNFzuPhV1d8lZSy8I+8tM86O43s=";
};
vendorSha256 = "sha256-VWWik7oovVJq0J/tj/2Mm5QtvRkJLtMROJhRC2JFZdw=";
# triggers a different set of tests that seems to be interactive and fail (no url target defined)
ldflags = [
"-s -w"
"-X main.GitVersion=${version}"
];
doInstallCheck = true;
installCheckPhase = ''
$out/bin/ddosify -version | grep ${version} > /dev/null
'';
meta = with lib; {
description = "High-performance load testing tool, written in Golang";
homepage = "https://ddosify.com/";
changelog = "https://github.com/ddosify/ddosify/releases/tag/v${version}";
license = licenses.agpl3Plus;
maintainers = with maintainers; [ bryanasdev000 ];
};
}

View File

@ -2589,6 +2589,8 @@ with pkgs;
ddate = callPackage ../tools/misc/ddate { };
ddosify = callPackage ../development/tools/ddosify { };
dduper = callPackage ../tools/filesystems/dduper { };
dedup = callPackage ../tools/backup/dedup { };