summary refs log tree commit diff
path: root/pkgs/tools/networking
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/networking')
-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;
+  };
+}