1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

new package: httping 2.3.4

This commit is contained in:
Rickard Nilsson 2015-01-19 03:52:26 +01:00
parent 1cd6cb2d6d
commit b64eeaf727
2 changed files with 28 additions and 0 deletions

View file

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

View file

@ -1501,6 +1501,8 @@ let
httpie = callPackage ../tools/networking/httpie { };
httping = callPackage ../tools/networking/httping {};
httpfs2 = callPackage ../tools/filesystems/httpfs { };
httptunnel = callPackage ../tools/networking/httptunnel { };