summary refs log tree commit diff
path: root/pkgs/tools/networking/httping
diff options
context:
space:
mode:
authorRickard Nilsson <rickynils@gmail.com>2015-01-19 03:52:26 +0100
committerRickard Nilsson <rickynils@gmail.com>2015-01-19 03:52:26 +0100
commitb64eeaf727c351ed7461793ca952ad4fee8ad12a (patch)
tree3c3ebf8f51358cd2c3de8d4f40904ca6ad032dd5 /pkgs/tools/networking/httping
parent1cd6cb2d6deaf54ab00f2d5c55d4b419dd0e550c (diff)
downloadnixpkgs-b64eeaf727c351ed7461793ca952ad4fee8ad12a.tar
nixpkgs-b64eeaf727c351ed7461793ca952ad4fee8ad12a.tar.gz
nixpkgs-b64eeaf727c351ed7461793ca952ad4fee8ad12a.tar.bz2
nixpkgs-b64eeaf727c351ed7461793ca952ad4fee8ad12a.tar.lz
nixpkgs-b64eeaf727c351ed7461793ca952ad4fee8ad12a.tar.xz
nixpkgs-b64eeaf727c351ed7461793ca952ad4fee8ad12a.tar.zst
nixpkgs-b64eeaf727c351ed7461793ca952ad4fee8ad12a.zip
new package: httping 2.3.4
Diffstat (limited to 'pkgs/tools/networking/httping')
-rw-r--r--pkgs/tools/networking/httping/default.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/tools/networking/httping/default.nix b/pkgs/tools/networking/httping/default.nix
new file mode 100644
index 00000000000..7e9906e7971
--- /dev/null
+++ b/pkgs/tools/networking/httping/default.nix
@@ -0,0 +1,26 @@
+{ stdenv, fetchurl, gettext }:
+
+stdenv.mkDerivation rec {
+  name = "httping-${version}";
+
+  version = "2.3.4";
+
+  src = fetchurl {
+    url = "http://www.vanheusden.com/httping/httping-2.3.4.tgz";
+    sha256 = "1hkbhdxb0phrvrddx9kcfpqlzm41xv9jvy82nfkqa7bb0v5p2qd7";
+  };
+
+  buildInputs = [ gettext ];
+
+  makeFlags = [
+    "DESTDIR=$(out)"
+    "PREFIX="
+  ];
+
+  meta = {
+    homepage = "http://www.vanheusden.com/httping";
+    description = "ping for HTTP requests";
+    maintainers = with stdenv.lib.maintainers; [ rickynils ];
+    platforms = with stdenv.lib.platforms; linux;
+  };
+}