summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2009-08-10 06:44:08 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2009-08-10 06:44:08 +0000
commit64b833face83d2a93a524149c55a1a0c21734b2b (patch)
treedc9b28dd2ae388595d79ac2e883b39af4a82769a /pkgs/tools
parent41eba0d962d51fa1d5a90669cdf6f0aad3b3338f (diff)
downloadnixpkgs-64b833face83d2a93a524149c55a1a0c21734b2b.tar
nixpkgs-64b833face83d2a93a524149c55a1a0c21734b2b.tar.gz
nixpkgs-64b833face83d2a93a524149c55a1a0c21734b2b.tar.bz2
nixpkgs-64b833face83d2a93a524149c55a1a0c21734b2b.tar.lz
nixpkgs-64b833face83d2a93a524149c55a1a0c21734b2b.tar.xz
nixpkgs-64b833face83d2a93a524149c55a1a0c21734b2b.tar.zst
nixpkgs-64b833face83d2a93a524149c55a1a0c21734b2b.zip
* smartmontools updated to 5.38.
svn path=/nixpkgs/trunk/; revision=16635
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/system/smartmontools/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/tools/system/smartmontools/default.nix b/pkgs/tools/system/smartmontools/default.nix
index 46821673b9c..8cab529d5c3 100644
--- a/pkgs/tools/system/smartmontools/default.nix
+++ b/pkgs/tools/system/smartmontools/default.nix
@@ -1,11 +1,11 @@
 {stdenv, fetchurl}:
 
-stdenv.mkDerivation {
-  name = "smartmontools-5.36";
+stdenv.mkDerivation rec {
+  name = "smartmontools-5.38";
   
   src = fetchurl {
-    url = mirror://sourceforge/smartmontools/smartmontools-5.36.tar.gz;
-    sha256 = "1x2bcbyrl5c4djcvnsnasdry498w6slx1gixgynpmlgq4bgjl0zj";
+    url = "mirror://sourceforge/smartmontools/${name}.tar.gz";
+    sha256 = "1s1i5y5n3jx681y03jj459yy4ijaq564z8bp2cgqb97wl4h762dj";
   };
 
   meta = {