My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/tools/ddosify/default.nix

36 lines
976 B

{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "ddosify";
version = "0.7.9";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "v${version}";
sha256 = "sha256-7dPDYBypLz0YWcgwP57LtZV+WNEGd705/0jyDXT4xTY=";
};
vendorSha256 = "sha256-WvchcVd0tql5Kxt2EP/auSq66hjiVqew7Iyi/ytaI64=";
ldflags = [
"-s -w"
"-X main.GitVersion=${version}"
];
# TestCreateHammerMultipartPayload error occurred - Get "https://upload.wikimedia.org/wikipedia/commons/b/bd/Test.svg"
doCheck = false;
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 ];
};
}