about summary refs log tree commit diff
path: root/pkgs/tools/system/smartmontools
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2012-07-02 10:42:42 +0200
committerPeter Simons <simons@cryp.to>2012-07-02 10:42:42 +0200
commit3d660e45981394dfa6f29ed9a93f2ff19736a726 (patch)
tree1eba991799594276b17af981230b9740e11a624e /pkgs/tools/system/smartmontools
parent4f8d6d0ee2601494bcdda0e2bb6ed6b4dc829793 (diff)
downloadnixlib-3d660e45981394dfa6f29ed9a93f2ff19736a726.tar
nixlib-3d660e45981394dfa6f29ed9a93f2ff19736a726.tar.gz
nixlib-3d660e45981394dfa6f29ed9a93f2ff19736a726.tar.bz2
nixlib-3d660e45981394dfa6f29ed9a93f2ff19736a726.tar.lz
nixlib-3d660e45981394dfa6f29ed9a93f2ff19736a726.tar.xz
nixlib-3d660e45981394dfa6f29ed9a93f2ff19736a726.tar.zst
nixlib-3d660e45981394dfa6f29ed9a93f2ff19736a726.zip
smartmontools: update to version 5.43
Diffstat (limited to 'pkgs/tools/system/smartmontools')
-rw-r--r--pkgs/tools/system/smartmontools/default.nix17
1 files changed, 8 insertions, 9 deletions
diff --git a/pkgs/tools/system/smartmontools/default.nix b/pkgs/tools/system/smartmontools/default.nix
index 154f6acc09bf..eee0b0de571d 100644
--- a/pkgs/tools/system/smartmontools/default.nix
+++ b/pkgs/tools/system/smartmontools/default.nix
@@ -1,19 +1,18 @@
-{stdenv, fetchurl}:
+{ stdenv, fetchurl }:
 
-let
-  name = "smartmontools-5.42";
-in
-stdenv.mkDerivation {
-  inherit name;
+stdenv.mkDerivation rec {
+  name = "smartmontools-5.43";
 
   src = fetchurl {
     url = "mirror://sourceforge/smartmontools/${name}.tar.gz";
-    sha256 = "b664d11e814e114ce3a32a4fa918c9e649c684e2897c007b2a8b92574decc374";
+    sha256 = "d845187d1500b87ef8d2c43772bd0218a59114fe58474a903c56777c9175351e";
   };
 
   meta = {
     description = "Tools for monitoring the health of hard drivers";
-    homepage = http://smartmontools.sourceforge.net/;
-    license = "GPL";
+    homepage = "http://smartmontools.sourceforge.net/";
+    license = stdenv.lib.licenses.gpl2Plus;
+    platforms = stdenv.lib.platforms.linux;
+    maintainers = [ stdenv.lib.maintainers.simons ];
   };
 }