From 5fe4c60e49e10afd624fd0b022f92da4511f671e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Forsman?= Date: Tue, 29 Nov 2022 15:33:02 +0100 Subject: [PATCH] smartmontools: remove unneeded inetutils It was only needed for 'hostname', which is now provided by the 'hostname' package, which has smaller storage footprint. --- pkgs/tools/system/smartmontools/default.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkgs/tools/system/smartmontools/default.nix b/pkgs/tools/system/smartmontools/default.nix index c1749030d6d..a54c85bdaf9 100644 --- a/pkgs/tools/system/smartmontools/default.nix +++ b/pkgs/tools/system/smartmontools/default.nix @@ -6,7 +6,6 @@ , gnused , hostname , mailutils -, inetutils , IOKit , ApplicationServices }: @@ -19,7 +18,7 @@ let sha256 = "sha256-0dtLev4JjeHsS259+qOgg19rz4yjkeX4D3ooUgS4RTI="; name = "smartmontools-drivedb.h"; }; - scriptPath = lib.makeBinPath ([ gnused hostname ] ++ lib.optionals enableMail [ inetutils mailutils ]); + scriptPath = lib.makeBinPath ([ gnused hostname ] ++ lib.optionals enableMail [ mailutils ]); in stdenv.mkDerivation rec {