From 124655ed49f8c44b0004d6098c2f1134b3404c10 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Thu, 14 Jan 2021 08:58:39 +0100 Subject: [PATCH] unixtools: align attribute name with filename (so they can be easier matched) --- pkgs/top-level/all-packages.nix | 2 +- pkgs/top-level/{unix-tools.nix => unixtools.nix} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename pkgs/top-level/{unix-tools.nix => unixtools.nix} (100%) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index c565f77f3dd..0d19db7332c 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -29401,7 +29401,7 @@ in apeClex = callPackage ../applications/misc/ape/apeclex.nix { }; # Unix tools - unixtools = recurseIntoAttrs (callPackages ./unix-tools.nix { }); + unixtools = recurseIntoAttrs (callPackages ./unixtools.nix { }); inherit (unixtools) hexdump ps logger eject umount mount wall hostname more sysctl getconf getent locale killall xxd watch; diff --git a/pkgs/top-level/unix-tools.nix b/pkgs/top-level/unixtools.nix similarity index 100% rename from pkgs/top-level/unix-tools.nix rename to pkgs/top-level/unixtools.nix