nixpkgs/pkgs/tools/networking/drill/default.nix

40 lines
833 B
Nix
Raw Normal View History

2021-10-20 09:18:09 +02:00
{ lib
, stdenv
2020-04-15 20:08:20 +02:00
, rustPlatform
, fetchFromGitHub
, pkg-config
, openssl
2020-05-03 11:20:00 +02:00
, Security
2020-04-15 20:08:20 +02:00
}:
rustPlatform.buildRustPackage rec {
pname = "drill";
2020-11-30 19:18:22 +01:00
version = "0.7.0";
2020-04-15 20:08:20 +02:00
src = fetchFromGitHub {
owner = "fcsonline";
repo = pname;
rev = version;
2020-11-30 19:18:22 +01:00
sha256 = "07zz0dj0wjwrc1rmayz7s8kpcv03i0ygl4vfwsam72qd4nf6v538";
2020-04-15 20:08:20 +02:00
};
cargoSha256 = "04gj9gaysjcm2d81ds2raak847hr8w84jgfdwqd51wi8xm32w5jf";
2020-04-15 20:08:20 +02:00
2021-10-20 09:18:09 +02:00
nativeBuildInputs = lib.optionals stdenv.isLinux [
pkg-config
];
buildInputs = lib.optionals stdenv.isLinux [
openssl
] ++ lib.optionals stdenv.isDarwin [
Security
];
2020-04-15 20:08:20 +02:00
meta = with lib; {
2020-04-15 20:08:20 +02:00
description = "HTTP load testing application inspired by Ansible syntax";
homepage = "https://github.com/fcsonline/drill";
2021-10-20 09:18:09 +02:00
license = licenses.gpl3Only;
maintainers = with maintainers; [ Br1ght0ne ];
2020-04-15 20:08:20 +02:00
};
}