drill: init at 0.5.0
This commit is contained in:
parent
84b91899c3
commit
9c51dba6d9
30
pkgs/tools/networking/drill/default.nix
Normal file
30
pkgs/tools/networking/drill/default.nix
Normal file
@ -0,0 +1,30 @@
|
||||
{ stdenv
|
||||
, rustPlatform
|
||||
, fetchFromGitHub
|
||||
, pkg-config
|
||||
, openssl
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "drill";
|
||||
version = "0.5.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "fcsonline";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "0aqd709fg0ha0lzri2p4pgraxvif7z8zcm8rx7sk6s2n605sc4gn";
|
||||
};
|
||||
|
||||
cargoSha256 = "1c8vmyf388kbbs56h8b62nxgxvgy9yj9cnmvax6ycnslkcwmvld0";
|
||||
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
buildInputs = [ openssl ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "HTTP load testing application inspired by Ansible syntax";
|
||||
homepage = "https://github.com/fcsonline/drill";
|
||||
license = licenses.gpl3;
|
||||
maintainers = with maintainers; [ filalex77 ];
|
||||
};
|
||||
}
|
@ -2958,6 +2958,8 @@ in
|
||||
|
||||
driftnet = callPackage ../tools/networking/driftnet {};
|
||||
|
||||
drill = callPackage ../tools/networking/drill { };
|
||||
|
||||
drone = callPackage ../development/tools/continuous-integration/drone { };
|
||||
|
||||
drone-cli = callPackage ../development/tools/continuous-integration/drone-cli { };
|
||||
|
Loading…
Reference in New Issue
Block a user