parent
8c881d076a
commit
8d0b23a5e4
2 changed files with 48 additions and 0 deletions
46
pkgs/tools/networking/bombardier/default.nix
Normal file
46
pkgs/tools/networking/bombardier/default.nix
Normal file
|
@ -0,0 +1,46 @@
|
|||
{ lib
|
||||
, buildGoModule
|
||||
, fetchFromGitHub
|
||||
, testers
|
||||
, bombardier
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "bombardier";
|
||||
version = "1.2.6";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "codesenberg";
|
||||
repo = "bombardier";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-sJ5+nxfyWSN6dFlA4INaqa3UHTY7huYkZhaTidMJFAs=";
|
||||
};
|
||||
|
||||
vendorHash = "sha256-SxW/87l1w86H5cxEhiF/Fj8SxJ/uAfhtc7I1DVvIilk=";
|
||||
|
||||
subPackages = [
|
||||
"."
|
||||
];
|
||||
|
||||
ldflags = [
|
||||
"-s"
|
||||
"-w"
|
||||
"-X=main.version=${version}"
|
||||
];
|
||||
|
||||
__darwinAllowLocalNetworking = true;
|
||||
|
||||
passthru.tests = {
|
||||
version = testers.testVersion {
|
||||
package = bombardier;
|
||||
};
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
description = "Fast cross-platform HTTP benchmarking tool written in Go";
|
||||
homepage = "https://github.com/codesenberg/bombardier";
|
||||
changelog = "https://github.com/codesenberg/bombardier/releases/tag/${src.rev}";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ figsoda ];
|
||||
};
|
||||
}
|
|
@ -6463,6 +6463,8 @@ with pkgs;
|
|||
|
||||
bluetooth_battery = python3Packages.callPackage ../applications/misc/bluetooth_battery { };
|
||||
|
||||
bombardier = callPackage ../tools/networking/bombardier { };
|
||||
|
||||
calyx-vpn = libsForQt5.callPackage ../tools/networking/bitmask-vpn {
|
||||
provider = "calyx";
|
||||
inherit (darwin.apple_sdk.frameworks) CoreFoundation Security;
|
||||
|
|
Loading…
Reference in a new issue