2020-10-18 14:36:24 +01:00
|
|
|
{ stdenv, lib, fetchurl, ncurses, perl, help2man
|
|
|
|
, apparmorRulesFromClosure
|
|
|
|
}:
|
2008-02-21 18:58:11 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2021-04-25 11:18:59 +01:00
|
|
|
pname = "inetutils";
|
2021-09-02 10:27:41 +01:00
|
|
|
version = "2.2";
|
2009-01-30 23:38:02 +00:00
|
|
|
|
2008-02-21 18:58:11 +00:00
|
|
|
src = fetchurl {
|
2021-04-25 11:18:59 +01:00
|
|
|
url = "mirror://gnu/${pname}/${pname}-${version}.tar.xz";
|
2021-09-02 10:27:41 +01:00
|
|
|
sha256 = "sha256-1Uf2kXLfc6/vaRoPeIYoD9eBrOoo3vT/S0shIIaonYA";
|
2008-02-21 18:58:11 +00:00
|
|
|
};
|
|
|
|
|
2020-10-18 14:36:24 +01:00
|
|
|
outputs = ["out" "apparmor"];
|
|
|
|
|
2017-04-20 09:32:52 +01:00
|
|
|
patches = [
|
2019-03-16 15:46:37 +00:00
|
|
|
# https://git.congatec.com/yocto/meta-openembedded/commit/3402bfac6b595c622e4590a8ff5eaaa854e2a2a3
|
|
|
|
./inetutils-1_9-PATH_PROCNET_DEV.patch
|
2017-04-20 09:32:52 +01:00
|
|
|
];
|
2017-03-07 04:08:24 +00:00
|
|
|
|
2019-03-16 15:46:37 +00:00
|
|
|
nativeBuildInputs = [ help2man perl /* for `whois' */ ];
|
|
|
|
buildInputs = [ ncurses /* for `talk' */ ];
|
|
|
|
|
|
|
|
# Don't use help2man if cross-compiling
|
|
|
|
# https://lists.gnu.org/archive/html/bug-sed/2017-01/msg00001.html
|
|
|
|
# https://git.congatec.com/yocto/meta-openembedded/blob/3402bfac6b595c622e4590a8ff5eaaa854e2a2a3/meta-networking/recipes-connectivity/inetutils/inetutils_1.9.1.bb#L44
|
|
|
|
preConfigure = let
|
|
|
|
isCross = stdenv.hostPlatform != stdenv.buildPlatform;
|
|
|
|
in lib.optionalString isCross ''
|
|
|
|
export HELP2MAN=true
|
|
|
|
'';
|
2009-12-16 22:56:44 +00:00
|
|
|
|
2018-01-13 05:40:48 +00:00
|
|
|
configureFlags = [ "--with-ncurses-include-dir=${ncurses.dev}/include" ]
|
2018-05-01 04:28:42 +01:00
|
|
|
++ lib.optionals stdenv.hostPlatform.isMusl [ # Musl doesn't define rcmd
|
2018-01-13 05:40:48 +00:00
|
|
|
"--disable-rcp"
|
|
|
|
"--disable-rsh"
|
|
|
|
"--disable-rlogin"
|
|
|
|
"--disable-rexec"
|
2018-05-01 04:28:42 +01:00
|
|
|
] ++ lib.optional stdenv.isDarwin "--disable-servers";
|
2009-12-16 22:56:44 +00:00
|
|
|
|
2012-09-21 18:39:20 +01:00
|
|
|
# Test fails with "UNIX socket name too long", probably because our
|
|
|
|
# $TMPDIR is too long.
|
2018-05-01 04:28:42 +01:00
|
|
|
doCheck = false;
|
2017-04-20 09:32:52 +01:00
|
|
|
|
2018-05-01 04:28:42 +01:00
|
|
|
installFlags = [ "SUIDMODE=" ];
|
2008-02-21 18:58:11 +00:00
|
|
|
|
2020-10-18 14:36:24 +01:00
|
|
|
postInstall = ''
|
2021-05-14 16:19:37 +01:00
|
|
|
mkdir $apparmor
|
|
|
|
cat >$apparmor/bin.ping <<EOF
|
2020-10-18 14:36:24 +01:00
|
|
|
$out/bin/ping {
|
|
|
|
include <abstractions/base>
|
|
|
|
include <abstractions/consoles>
|
|
|
|
include <abstractions/nameservice>
|
|
|
|
include "${apparmorRulesFromClosure { name = "ping"; } [stdenv.cc.libc]}"
|
|
|
|
include <local/bin.ping>
|
|
|
|
capability net_raw,
|
|
|
|
network inet raw,
|
|
|
|
network inet6 raw,
|
|
|
|
mr $out/bin/ping,
|
|
|
|
}
|
|
|
|
EOF
|
|
|
|
'';
|
|
|
|
|
2018-05-01 04:28:42 +01:00
|
|
|
meta = with lib; {
|
2014-08-24 15:21:08 +01: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
|
|
|
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.gnu.org/software/inetutils/";
|
2018-05-01 04:28:42 +01:00
|
|
|
license = licenses.gpl3Plus;
|
2009-12-16 22:56:44 +00:00
|
|
|
|
2018-05-01 04:28:42 +01:00
|
|
|
maintainers = with maintainers; [ matthewbauer ];
|
|
|
|
platforms = platforms.unix;
|
2008-02-21 18:58:11 +00:00
|
|
|
};
|
|
|
|
}
|