iputils: update 20101006 to 20121221

Still without manpages! I don't know where to get SGML tools.
This commit is contained in:
Lluís Batlle i Rossell 2013-03-18 12:21:00 +01:00
parent 36054d4e3c
commit 1e1b6ee733

View File

@ -1,24 +1,27 @@
{ stdenv, fetchurl, libsysfs, openssl }: { stdenv, fetchurl, libsysfs, gnutls, openssl, libcap }:
assert stdenv ? glibc; assert stdenv ? glibc;
stdenv.mkDerivation { let
name = "iputils-20101006"; time = "20121221";
in
stdenv.mkDerivation rec {
name = "iputils-${time}";
src = fetchurl { src = fetchurl {
url = http://www.skbuff.net/iputils/iputils-s20101006.tar.bz2; url = "http://www.skbuff.net/iputils/iputils-s${time}.tar.bz2";
sha256 = "1rvfvdnmzlmgy9a6xv5v4n785zmn10v2l7yaq83rdfgbh1ng8fpx"; sha256 = "17riqp8dh8dvx32zv3hyrghpxz6xnxa6vai9b4yc485nqngm83s5";
}; };
buildInputs = [ libsysfs openssl ]; buildInputs = [ libsysfs gnutls openssl libcap ];
# Urgh, it uses Make's `-l' dependency "feature". buildFlags = "all ninfod";
makeFlags = "VPATH=${libsysfs}/lib:${stdenv.glibc}/lib:${openssl}/lib";
installPhase = installPhase =
'' ''
mkdir -p $out/sbin mkdir -p $out/sbin $out/bin
cp -p arping ping ping6 rdisc tracepath tracepath6 traceroute6 $out/sbin/ cp -p ping ping6 tracepath tracepath6 traceroute6 $out/bin/
cp -p clockdiff arping rdisc ninfod/ninfod $out/sbin/
''; '';
meta = { meta = {