about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBjørn Forsman <bjorn.forsman@gmail.com>2022-11-29 15:33:02 +0100
committerBjørn Forsman <bjorn.forsman@gmail.com>2022-11-29 20:34:13 +0100
commit5fe4c60e49e10afd624fd0b022f92da4511f671e (patch)
tree26069139e597aea4ed198371090cd551bb0a6cd7
parent43052306ac871786ff17a5e62d04356737a4eea5 (diff)
smartmontools: remove unneeded inetutils
It was only needed for 'hostname', which is now provided by the
'hostname' package, which has smaller storage footprint.
-rw-r--r--pkgs/tools/system/smartmontools/default.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/pkgs/tools/system/smartmontools/default.nix b/pkgs/tools/system/smartmontools/default.nix
index c1749030d6dde..a54c85bdaf922 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 {