nixpkgs/pkgs/development/libraries/liboping/default.nix
Bjørn Forsman f6b7a24a9c liboping: update 1.6.2 -> 1.8.0
According to NEWS, the changes are in the command line tools, not the
library, so I think dependees (only collectd) will work fine.

Also update homepage: http://verplant.org/liboping/ => http://noping.cc/
2014-12-03 16:11:29 +01:00

30 lines
1,019 B
Nix

{ stdenv, fetchurl, ncurses ? null, perl ? null }:
stdenv.mkDerivation rec {
name = "liboping-1.8.0";
src = fetchurl {
url = "http://verplant.org/liboping/files/${name}.tar.bz2";
sha256 = "1nsvlsvapc64h0anip2hz5ydbgk3an94xqiaa9kivcw1r6193jqx";
};
buildInputs = [ ncurses perl ];
configureFlags = stdenv.lib.optionalString (perl == null) "--with-perl-bindings=no";
meta = with stdenv.lib; {
description = "C library to generate ICMP echo requests (a.k.a. ping packets)";
longDescription = ''
liboping is a C library to generate ICMP echo requests, better known as
"ping packets". It is intended for use in network monitoring applications
or applications that would otherwise need to fork ping(1) frequently.
Included is a sample application, called oping, which demonstrates the
library's abilities.
'';
homepage = http://noping.cc/;
license = licenses.lgpl21;
platforms = platforms.linux;
maintainers = [ maintainers.bjornfor ];
};
}