Files
nixpkgs/pkgs/tools/networking/inetutils/default.nix
T

48 lines
1.3 KiB
Nix
Raw Normal View History

2017-04-20 10:32:52 +02:00
{ stdenv, fetchurl, ncurses, perl, help2man }:
2008-02-21 18:58:11 +00:00
stdenv.mkDerivation rec {
2015-06-16 15:20:28 -07:00
name = "inetutils-1.9.4";
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";
2015-06-16 15:20:28 -07:00
sha256 = "05n65k4ixl85dc6rxc51b1b732gnmm8xnqi424dy9f1nz7ppb3xy";
2008-02-21 18:58:11 +00:00
};
2017-04-20 10:32:52 +02:00
patches = [
./whois-Update-Canadian-TLD-server.patch
./service-name.patch
];
2017-04-20 10:32:52 +02:00
buildInputs = [ ncurses /* for `talk' */ perl /* for `whois' */ help2man ];
2009-12-16 22:56:44 +00:00
2015-10-05 20:32:54 +02:00
configureFlags = "--with-ncurses-include-dir=${ncurses.dev}/include";
2009-12-16 22:56:44 +00:00
# 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
2017-04-20 10:32:52 +02: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.
chmod +x $out/bin/{ping,ping6,rcp,rlogin,rsh,traceroute}
2008-02-21 18:58:11 +00:00
'';
meta = {
2014-08-24 16:21:08 +02:00
description = "Collection of common network programs";
2009-01-30 23:38:02 +00:00
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/;
license = stdenv.lib.licenses.gpl3Plus;
2009-12-16 22:56:44 +00:00
2015-01-13 22:33:24 +01:00
maintainers = [ ];
2009-12-16 22:56:44 +00:00
platforms = stdenv.lib.platforms.gnu;
2008-02-21 18:58:11 +00:00
};
}