httping 2.3.4 -> 2.4
Also add support for the fancy ncurses interface.
This commit is contained in:
parent
16bb38655d
commit
f401b3cf0b
@ -1,26 +1,27 @@
|
|||||||
{ stdenv, fetchurl, gettext }:
|
{ stdenv, fetchurl, gettext, ncurses }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "httping-${version}";
|
name = "httping-${version}";
|
||||||
|
|
||||||
version = "2.3.4";
|
version = "2.4";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://www.vanheusden.com/httping/httping-2.3.4.tgz";
|
url = "http://www.vanheusden.com/httping/${name}.tgz";
|
||||||
sha256 = "1hkbhdxb0phrvrddx9kcfpqlzm41xv9jvy82nfkqa7bb0v5p2qd7";
|
sha256 = "1110r3gpsj9xmybdw7w4zkhj3zmn5mnv2nq0ijbvrywbn019zdfs";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ gettext ];
|
buildInputs = [ gettext ncurses ];
|
||||||
|
|
||||||
makeFlags = [
|
makeFlags = [
|
||||||
"DESTDIR=$(out)"
|
"DESTDIR=$(out)"
|
||||||
"PREFIX="
|
"PREFIX="
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
homepage = "http://www.vanheusden.com/httping";
|
inherit version;
|
||||||
description = "ping for HTTP requests";
|
homepage = http://www.vanheusden.com/httping;
|
||||||
maintainers = with stdenv.lib.maintainers; [ rickynils ];
|
description = "ping with HTTP requests";
|
||||||
platforms = with stdenv.lib.platforms; linux;
|
maintainers = with maintainers; [ nckx rickynils ];
|
||||||
|
platforms = with platforms; linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user