iputils: 20211215 -> 20221126
This commit is contained in:
@@ -290,6 +290,17 @@
|
||||
<literal>freetype</literal> and others.
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
The iputils package, which is installed by default, no longer
|
||||
provides the <literal>ninfod</literal>,
|
||||
<literal>rarpd</literal> and <literal>rdisc</literal> tools.
|
||||
See
|
||||
<link xlink:href="https://github.com/iputils/iputils/releases/tag/20221126">upstream’s
|
||||
release notes</link> for more details and available
|
||||
replacements.
|
||||
</para>
|
||||
</listitem>
|
||||
</itemizedlist>
|
||||
</section>
|
||||
<section xml:id="sec-release-23.05-notable-changes">
|
||||
|
||||
@@ -75,6 +75,11 @@ In addition to numerous new and upgraded packages, this release has the followin
|
||||
|
||||
- Deprecated `xlibsWrapper` transitional package has been removed in favour of direct use of its constitutents: `xorg.libX11`, `freetype` and others.
|
||||
|
||||
- The iputils package, which is installed by default, no longer provides the
|
||||
`ninfod`, `rarpd` and `rdisc` tools. See
|
||||
[upstream's release notes](https://github.com/iputils/iputils/releases/tag/20221126)
|
||||
for more details and available replacements.
|
||||
|
||||
## Other Notable Changes {#sec-release-23.05-notable-changes}
|
||||
|
||||
<!-- To avoid merge conflicts, consider adding your item at an arbitrary place in the list instead. -->
|
||||
|
||||
@@ -5,21 +5,15 @@
|
||||
, apparmorRulesFromClosure
|
||||
}:
|
||||
|
||||
let
|
||||
version = "20211215";
|
||||
sunAsIsLicense = {
|
||||
fullName = "AS-IS, SUN MICROSYSTEMS license";
|
||||
url = "https://github.com/iputils/iputils/blob/s${version}/rdisc.c";
|
||||
};
|
||||
in stdenv.mkDerivation rec {
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "iputils";
|
||||
inherit version;
|
||||
version = "20221126";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = pname;
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "1vzdch1xi2x2j8mvnsr4wwwh7kdkgf926xafw5kkb74yy1wac5qv";
|
||||
hash = "sha256-XVoQhdjBmEK8TbCpaKLjebPw7ZT8iEvyLJDTCkzezeE=";
|
||||
};
|
||||
|
||||
outputs = ["out" "apparmor"];
|
||||
@@ -29,7 +23,6 @@ in stdenv.mkDerivation rec {
|
||||
doCheck = false;
|
||||
|
||||
mesonFlags = [
|
||||
"-DBUILD_RARPD=true"
|
||||
"-DNO_SETCAP_OR_SUID=true"
|
||||
"-Dsystemdunitdir=etc/systemd/system"
|
||||
"-DINSTALL_SYSTEMD_UNITS=true"
|
||||
@@ -68,20 +61,17 @@ in stdenv.mkDerivation rec {
|
||||
description = "A set of small useful utilities for Linux networking";
|
||||
inherit (src.meta) homepage;
|
||||
changelog = "https://github.com/iputils/iputils/releases/tag/s${version}";
|
||||
license = with licenses; [ gpl2Plus bsd3 sunAsIsLicense ];
|
||||
license = with licenses; [ gpl2Plus bsd3 ];
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ primeos lheckemann ];
|
||||
|
||||
longDescription = ''
|
||||
A set of small useful utilities for Linux networking including:
|
||||
|
||||
arping
|
||||
clockdiff
|
||||
ninfod
|
||||
ping
|
||||
rarpd
|
||||
rdisc
|
||||
tracepath
|
||||
- arping: send ARP REQUEST to a neighbour host
|
||||
- clockdiff: measure clock difference between hosts
|
||||
- ping: send ICMP ECHO_REQUEST to network hosts
|
||||
- tracepath: traces path to a network host discovering MTU along this path
|
||||
'';
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user