summary refs log tree commit diff
path: root/pkgs/tools/networking/drill
diff options
context:
space:
mode:
authorOleksii Filonenko <brightone@protonmail.com>2020-04-15 21:08:20 +0300
committerOleksii Filonenko <brightone@protonmail.com>2020-04-15 21:08:20 +0300
commit9c51dba6d9020ad15e338868fd510f709b8a5aac (patch)
tree4f88466183e41f37996c3f3024ab41b9f8552f70 /pkgs/tools/networking/drill
parent84b91899c371fe9336642cb2d7d4990f528ee656 (diff)
downloadnixpkgs-9c51dba6d9020ad15e338868fd510f709b8a5aac.tar
nixpkgs-9c51dba6d9020ad15e338868fd510f709b8a5aac.tar.gz
nixpkgs-9c51dba6d9020ad15e338868fd510f709b8a5aac.tar.bz2
nixpkgs-9c51dba6d9020ad15e338868fd510f709b8a5aac.tar.lz
nixpkgs-9c51dba6d9020ad15e338868fd510f709b8a5aac.tar.xz
nixpkgs-9c51dba6d9020ad15e338868fd510f709b8a5aac.tar.zst
nixpkgs-9c51dba6d9020ad15e338868fd510f709b8a5aac.zip
drill: init at 0.5.0
Diffstat (limited to 'pkgs/tools/networking/drill')
-rw-r--r--pkgs/tools/networking/drill/default.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/pkgs/tools/networking/drill/default.nix b/pkgs/tools/networking/drill/default.nix
new file mode 100644
index 00000000000..7636bd44d2d
--- /dev/null
+++ b/pkgs/tools/networking/drill/default.nix
@@ -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 ];
+  };
+}