mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 17:33:09 +00:00
new package: httping 2.3.4
This commit is contained in:
parent
1cd6cb2d6d
commit
b64eeaf727
26
pkgs/tools/networking/httping/default.nix
Normal file
26
pkgs/tools/networking/httping/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user