about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorFabian Schmitthenner <development@schmitthenner.eu>2015-11-27 23:58:49 +0000
committerAristid Breitkreuz <aristidb@gmail.com>2015-11-29 00:31:13 +0100
commita936b602b58bffc2e0a903085fcbbb5df88850ea (patch)
tree52675d4c9a2e8cf0a480224d6faf79488b14ce08 /pkgs
parentbd826685295aab80f9ccc64565a21a4b18713755 (diff)
smartmontools: 6.3 -> 6.4, update driverdb to r4179
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/tools/system/smartmontools/default.nix14
1 files changed, 8 insertions, 6 deletions
diff --git a/pkgs/tools/system/smartmontools/default.nix b/pkgs/tools/system/smartmontools/default.nix
index 72c8f8d028ebb..157b980be8c63 100644
--- a/pkgs/tools/system/smartmontools/default.nix
+++ b/pkgs/tools/system/smartmontools/default.nix
@@ -1,23 +1,25 @@
 { stdenv, fetchurl }:
 
 let
-  dbrev = "3849";
+  version = "6.4";
+  drivedbBranch = "RELEASE_${builtins.replaceStrings ["."] ["_"] version}_DRIVEDB";
+  dbrev = "4167";
   driverdb = fetchurl {
-    url = "http://sourceforge.net/p/smartmontools/code/${dbrev}/tree/trunk/smartmontools/drivedb.h?format=raw";
-    sha256 = "06c1cl0x4sq64l3rmd5rk8wsbggjixphpgj0kf4awqhjgsi102xz";
+    url = "http://sourceforge.net/p/smartmontools/code/${dbrev}/tree/branches/${drivedbBranch}/smartmontools/drivedb.h?format=raw";
+    sha256 = "14rv1cxbpmnq12hjwr3icjiahx5i0ak7j69310c09rah0241l5j1";
     name = "smartmontools-drivedb.h";
   };
 in
 stdenv.mkDerivation rec {
-  name = "smartmontools-6.3";
+  name = "smartmontools-${version}";
 
   src = fetchurl {
     url = "mirror://sourceforge/smartmontools/${name}.tar.gz";
-    sha256 = "06gy71jh2d3gcfmlbbrsqw7215knkfq59q3j6qdxfrar39fhcxx7";
+    sha256 = "11bsxcghh7adzdklcslamlynydxb708vfz892d5w7agdq405ddza";
   };
 
   patchPhase = ''
-    : cp ${driverdb} drivedb.h
+    cp ${driverdb} drivedb.h
     sed -i -e 's@which which >/dev/null || exit 1@alias which="type -p"@' update-smart-drivedb.in
   '';