2018-05-01 05:28:42 +02:00
|
|
|
{ stdenv, lib, fetchurl, ncurses, perl, help2man }:
|
2008-02-21 19:58:11 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-06-17 00:20:28 +02:00
|
|
|
name = "inetutils-1.9.4";
|
2009-01-31 00:38:02 +01:00
|
|
|
|
2008-02-21 19:58:11 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnu/inetutils/${name}.tar.gz";
|
2015-06-17 00:20:28 +02:00
|
|
|
sha256 = "05n65k4ixl85dc6rxc51b1b732gnmm8xnqi424dy9f1nz7ppb3xy";
|
2008-02-21 19:58:11 +01:00
|
|
|
};
|
|
|
|
|
2017-04-20 10:32:52 +02:00
|
|
|
patches = [
|
|
|
|
./whois-Update-Canadian-TLD-server.patch
|
|
|
|
./service-name.patch
|
|
|
|
];
|
2017-03-07 05:08:24 +01:00
|
|
|
|
2017-04-20 10:32:52 +02:00
|
|
|
buildInputs = [ ncurses /* for `talk' */ perl /* for `whois' */ help2man ];
|
2009-12-16 23:56:44 +01:00
|
|
|
|
2018-01-13 06:40:48 +01:00
|
|
|
configureFlags = [ "--with-ncurses-include-dir=${ncurses.dev}/include" ]
|
2018-05-01 05:28:42 +02:00
|
|
|
++ lib.optionals stdenv.hostPlatform.isMusl [ # Musl doesn't define rcmd
|
2018-01-13 06:40:48 +01:00
|
|
|
"--disable-rcp"
|
|
|
|
"--disable-rsh"
|
|
|
|
"--disable-rlogin"
|
|
|
|
"--disable-rexec"
|
2018-05-01 05:28:42 +02:00
|
|
|
] ++ lib.optional stdenv.isDarwin "--disable-servers";
|
2009-12-16 23:56:44 +01:00
|
|
|
|
2012-09-21 19:39:20 +02:00
|
|
|
# Test fails with "UNIX socket name too long", probably because our
|
|
|
|
# $TMPDIR is too long.
|
2018-05-01 05:28:42 +02:00
|
|
|
doCheck = false;
|
2017-04-20 10:32:52 +02:00
|
|
|
|
2018-05-01 05:28:42 +02:00
|
|
|
installFlags = [ "SUIDMODE=" ];
|
2008-02-21 19:58:11 +01:00
|
|
|
|
2018-05-01 05:28:42 +02:00
|
|
|
meta = with lib; {
|
2014-08-24 16:21:08 +02:00
|
|
|
description = "Collection of common network programs";
|
2009-01-31 00:38:02 +01:00
|
|
|
|
2009-12-16 23:56:44 +01: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-31 00:38:02 +01:00
|
|
|
|
2018-12-01 19:22:13 +01:00
|
|
|
homepage = https://www.gnu.org/software/inetutils/;
|
2018-05-01 05:28:42 +02:00
|
|
|
license = licenses.gpl3Plus;
|
2009-12-16 23:56:44 +01:00
|
|
|
|
2018-05-01 05:28:42 +02:00
|
|
|
maintainers = with maintainers; [ matthewbauer ];
|
|
|
|
platforms = platforms.unix;
|
2008-02-21 19:58:11 +01:00
|
|
|
};
|
|
|
|
}
|