2009-12-16 22:56:44 +00:00
|
|
|
{ stdenv, fetchurl, ncurses }:
|
2008-02-21 18:58:11 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2014-03-01 03:29:14 +00:00
|
|
|
name = "inetutils-1.9.2";
|
2009-01-30 23:38:02 +00:00
|
|
|
|
2008-02-21 18:58:11 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnu/inetutils/${name}.tar.gz";
|
2014-03-01 03:29:14 +00:00
|
|
|
sha256 = "04wrm0v7l4890mmbaawd6wjwdv08bkglgqhpz0q4dkb0l50fl8q4";
|
2008-02-21 18:58:11 +00:00
|
|
|
};
|
|
|
|
|
2009-12-16 22:56:44 +00:00
|
|
|
buildInputs = [ ncurses /* for `talk' */ ];
|
|
|
|
|
|
|
|
configureFlags = "--with-ncurses-include-dir=${ncurses}/include";
|
|
|
|
|
2012-09-21 18:39:20 +01:00
|
|
|
preConfigure = ''
|
|
|
|
# Fix for building on Glibc 2.16. Won't be needed once the
|
|
|
|
# gnulib in inetutils is updated.
|
|
|
|
sed -i '/gets is a security hole/d' lib/stdio.in.h
|
|
|
|
'';
|
|
|
|
|
|
|
|
# Test fails with "UNIX socket name too long", probably because our
|
|
|
|
# $TMPDIR is too long.
|
|
|
|
#doCheck = true;
|
2009-12-16 22:56:44 +00:00
|
|
|
|
2008-02-21 18:58:11 +00:00
|
|
|
postInstall = ''
|
|
|
|
# XXX: These programs are normally installed setuid but since it
|
|
|
|
# fails, they end up being non-executable, hence this hack.
|
2010-01-13 13:46:22 +00:00
|
|
|
chmod +x $out/bin/{ping,ping6,rcp,rlogin,rsh,traceroute}
|
2008-02-21 18:58:11 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
2009-01-30 23:38:02 +00:00
|
|
|
description = "GNU Inetutils, a collection of common network programs";
|
|
|
|
|
2009-12-16 22:56:44 +00:00
|
|
|
longDescription =
|
|
|
|
'' The GNU network utilities suite provides the
|
|
|
|
following tools: ftp(d), hostname, ifconfig, inetd, logger, ping, rcp,
|
|
|
|
rexec(d), rlogin(d), rsh(d), syslogd, talk(d), telnet(d), tftp(d),
|
|
|
|
traceroute, uucpd, and whois.
|
|
|
|
'';
|
2009-01-30 23:38:02 +00:00
|
|
|
|
2008-02-21 18:58:11 +00:00
|
|
|
homepage = http://www.gnu.org/software/inetutils/;
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.gpl3Plus;
|
2009-12-16 22:56:44 +00:00
|
|
|
|
|
|
|
maintainers = [ stdenv.lib.maintainers.ludo ];
|
|
|
|
platforms = stdenv.lib.platforms.gnu;
|
2008-02-21 18:58:11 +00:00
|
|
|
};
|
|
|
|
}
|