drill: init at 0.5.0

This commit is contained in:
Oleksii Filonenko 2020-04-15 21:08:20 +03:00
parent 84b91899c3
commit 9c51dba6d9
No known key found for this signature in database
GPG key ID: F3510FE5691629A1
2 changed files with 32 additions and 0 deletions

View 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 ];
};
}

View file

@ -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 { };