nixpkgs/pkgs/tools/networking/httping/default.nix

29 lines
657 B
Nix
Raw Normal View History

2015-07-10 10:58:56 +00:00
{ stdenv, fetchurl, gettext, ncurses, openssl }:
2015-01-19 02:52:26 +00:00
stdenv.mkDerivation rec {
name = "httping-${version}";
version = "2.4";
2015-01-19 02:52:26 +00:00
src = fetchurl {
url = "http://www.vanheusden.com/httping/${name}.tgz";
sha256 = "1110r3gpsj9xmybdw7w4zkhj3zmn5mnv2nq0ijbvrywbn019zdfs";
2015-01-19 02:52:26 +00:00
};
2015-07-10 10:58:56 +00:00
buildInputs = [ ncurses openssl ];
nativeBuildInputs = [ gettext ];
2015-01-19 02:52:26 +00:00
makeFlags = [
"DESTDIR=$(out)"
"PREFIX="
];
meta = with stdenv.lib; {
inherit version;
homepage = http://www.vanheusden.com/httping;
description = "ping with HTTP requests";
maintainers = with maintainers; [ nckx rickynils ];
platforms = with platforms; linux;
2015-01-19 02:52:26 +00:00
};
}