nixpkgs/pkgs/development/tools/ddosify/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

39 lines
1.0 KiB
Nix
Raw Normal View History

2021-10-21 13:00:49 +00:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "ddosify";
2023-01-20 05:49:23 +00:00
version = "0.12.0";
2021-10-21 13:00:49 +00:00
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "v${version}";
2023-01-20 05:49:23 +00:00
sha256 = "sha256-peqLeZ8RxkvaqUER2FBQeTdy1AQ/+Bcz9gGOGz1CACc=";
2021-10-21 13:00:49 +00:00
};
2023-01-20 05:49:23 +00:00
vendorHash = "sha256-3y5ppTtvGqwWhgnVBpP4gf26DHKPnSNYK4jfhBiYDwY=";
2021-10-21 13:00:49 +00:00
ldflags = [
"-s" "-w"
2021-10-21 13:00:49 +00:00
"-X main.GitVersion=${version}"
"-X main.GitCommit=unknown"
"-X main.BuildDate=unknown"
2021-10-21 13:00:49 +00:00
];
2021-12-29 08:17:11 +00:00
# TestCreateHammerMultipartPayload error occurred - Get "https://upload.wikimedia.org/wikipedia/commons/b/bd/Test.svg"
doCheck = false;
2021-10-21 13:00:49 +00:00
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 ];
};
}