nixpkgs/pkgs/tools/networking/inetutils/default.nix
Neil Mayhew ba8b6b4a7a
inetutils: Add patch for Canadian TLD server
Cherry-picked from upstream (inetutils-1_9_4-31-g73e2811).

Could be a long time before a new inetutils release is made.
vcunat amended the patch to apply.
2017-03-07 21:30:03 +01:00

44 lines
1.3 KiB
Nix

{ stdenv, fetchurl, ncurses, perl }:
stdenv.mkDerivation rec {
name = "inetutils-1.9.4";
src = fetchurl {
url = "mirror://gnu/inetutils/${name}.tar.gz";
sha256 = "05n65k4ixl85dc6rxc51b1b732gnmm8xnqi424dy9f1nz7ppb3xy";
};
patches = [ ./whois-Update-Canadian-TLD-server.patch ];
buildInputs = [ ncurses /* for `talk' */ perl /* for `whois' */ ];
configureFlags = "--with-ncurses-include-dir=${ncurses.dev}/include";
# Test fails with "UNIX socket name too long", probably because our
# $TMPDIR is too long.
#doCheck = true;
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}
'';
meta = {
description = "Collection of common network programs";
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.
'';
homepage = http://www.gnu.org/software/inetutils/;
license = stdenv.lib.licenses.gpl3Plus;
maintainers = [ ];
platforms = stdenv.lib.platforms.gnu;
};
}