about summary refs log tree commit diff
path: root/pkgs/tools/system
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2021-01-18 01:16:03 +0000
committerGitHub <noreply@github.com>2021-01-18 01:16:03 +0000
commitb7f20dcd026426f900d81b76391d402049b96ca8 (patch)
tree3dde395aac1b900f15ac668e5fd779837d4f943c /pkgs/tools/system
parent4bdb892722454a6d97ad2b72d5ddb5cbe2f2e420 (diff)
parent3fc28a93b0091a7ec1b6f6e5110a6cfa92d6dd0a (diff)
Merge master into staging-next
Diffstat (limited to 'pkgs/tools/system')
-rw-r--r--pkgs/tools/system/smartmontools/default.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/tools/system/smartmontools/default.nix b/pkgs/tools/system/smartmontools/default.nix
index e21fbcfd70041..9eaf00b537a30 100644
--- a/pkgs/tools/system/smartmontools/default.nix
+++ b/pkgs/tools/system/smartmontools/default.nix
@@ -1,15 +1,15 @@
 { lib, stdenv, fetchurl, autoreconfHook
 , mailutils, inetutils
-, IOKit ? null , ApplicationServices ? null }:
+, IOKit, ApplicationServices }:
 
 let
-  version = "7.1";
+  version = "7.2";
 
-  dbrev = "5062";
-  drivedbBranch = "RELEASE_7_0_DRIVEDB";
+  dbrev = "5164";
+  drivedbBranch = "RELEASE_7_2_DRIVEDB";
   driverdb = fetchurl {
     url    = "https://sourceforge.net/p/smartmontools/code/${dbrev}/tree/branches/${drivedbBranch}/smartmontools/drivedb.h?format=raw";
-    sha256 = "0gggl55h9gq0z846ndhyd7xrpxh8lqfbidblx0598q2wlh9rvlww";
+    sha256 = "1vj0sv3bgcd0lwk5x450brfyxksa5fn1mjgvmj994ab8spmicc43";
     name   = "smartmontools-drivedb.h";
   };
 
@@ -19,7 +19,7 @@ in stdenv.mkDerivation rec {
 
   src = fetchurl {
     url = "mirror://sourceforge/smartmontools/${pname}-${version}.tar.gz";
-    sha256 = "0imqb7ka4ia5573w8rnpck571pjjc9698pdjcapy9cfyk4n4swrz";
+    sha256 = "1mlc25sd5rgj5xmzcllci47inmfdw7cp185fday6hc9rwqkqmnaw";
   };
 
   patches = [ ./smartmontools.patch ];