smartmontools: update to version 5.43

This commit is contained in:
Peter Simons 2012-07-02 10:42:42 +02:00
parent 4f8d6d0ee2
commit 3d660e4598

View file

@ -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 ];
};
}