From 20a9caf0a474e182909ac850fa675a4ded502e6c Mon Sep 17 00:00:00 2001 From: Michael Weiss Date: Sun, 15 Nov 2020 12:03:15 +0100 Subject: [PATCH] iproute: Rename the attribute to iproute2 This is done because the project is actually named iproute2: - https://wiki.linuxfoundation.org/networking/iproute2 - https://git.kernel.org/pub/scm/network/iproute2/iproute2.git - https://en.wikipedia.org/wiki/Iproute2 Our package name already reflects that and for consistency the attribute name should also be iproute2. However, it is important to note that some distributions use "iproute" (but that might be for technical reasons): - https://repology.org/project/iproute2/versions --- pkgs/top-level/all-packages.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index d1d1b8a84a00..76a385398b33 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -17913,7 +17913,8 @@ julia_15 = callPackage ../development/compilers/julia/1.5.nix { iotop = callPackage ../os-specific/linux/iotop { }; - iproute = callPackage ../os-specific/linux/iproute { }; + iproute2 = callPackage ../os-specific/linux/iproute { }; + iproute = iproute2; # Alias added 2020-11-15 (TODO: deprecate and move to pkgs/top-level/aliases.nix) iproute_mptcp = callPackage ../os-specific/linux/iproute/mptcp.nix { };