2007-10-18 15:05:43 +02:00
|
|
|
{stdenv, fetchurl}:
|
|
|
|
|
2009-08-10 08:44:08 +02:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "smartmontools-5.38";
|
2007-10-18 15:05:43 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2009-08-10 08:44:08 +02:00
|
|
|
url = "mirror://sourceforge/smartmontools/${name}.tar.gz";
|
|
|
|
sha256 = "1s1i5y5n3jx681y03jj459yy4ijaq564z8bp2cgqb97wl4h762dj";
|
2007-10-18 15:05:43 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Tools for monitoring the health of hard drivers";
|
|
|
|
homepage = http://smartmontools.sourceforge.net/;
|
|
|
|
license = "GPL";
|
|
|
|
};
|
|
|
|
}
|