From 822e677f0a0b05b1cc6c349e14a57fcbb86afbfa Mon Sep 17 00:00:00 2001 From: eropleco <73182853+eropleco@users.noreply.github.com> Date: Mon, 18 Jan 2021 07:09:10 +0800 Subject: [PATCH] smartmontools: 7.1 -> 7.2 and devicedb updated to latest (#109566) Co-authored-by: Sandro --- pkgs/tools/system/smartmontools/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/tools/system/smartmontools/default.nix b/pkgs/tools/system/smartmontools/default.nix index e21fbcfd7004..9eaf00b537a3 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 ];