2012-07-02 08:42:42 +00:00
|
|
|
{ stdenv, fetchurl }:
|
2007-10-18 13:05:43 +00:00
|
|
|
|
2012-09-18 17:33:12 +00:00
|
|
|
let
|
|
|
|
driverdb = fetchurl {
|
|
|
|
url = "http://smartmontools.svn.sourceforge.net/viewvc/smartmontools/branches/RELEASE_5_43_DRIVEDB/smartmontools/drivedb.h?revision=3605";
|
|
|
|
sha256 = "1kibx5aal903hcpy6mjmfik6n9j142i3q3vvrcp1wmz10mfsqj8f";
|
|
|
|
};
|
|
|
|
in
|
2012-07-02 08:42:42 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2012-10-10 17:26:02 +00:00
|
|
|
name = "smartmontools-6.0";
|
2011-07-08 10:51:18 +00:00
|
|
|
|
2007-10-18 13:05:43 +00:00
|
|
|
src = fetchurl {
|
2009-08-10 06:44:08 +00:00
|
|
|
url = "mirror://sourceforge/smartmontools/${name}.tar.gz";
|
2012-10-10 17:26:02 +00:00
|
|
|
sha256 = "9fe4ff2b7bcd00fde19db82bba168f5462ed6e857d3ef439495e304e3231d3a6";
|
2007-10-18 13:05:43 +00:00
|
|
|
};
|
|
|
|
|
2012-10-10 17:26:02 +00:00
|
|
|
# patchPhase = "cp ${driverdb} drivedb.h";
|
2012-09-18 17:33:12 +00:00
|
|
|
|
2007-10-18 13:05:43 +00:00
|
|
|
meta = {
|
|
|
|
description = "Tools for monitoring the health of hard drivers";
|
2012-07-02 08:42:42 +00:00
|
|
|
homepage = "http://smartmontools.sourceforge.net/";
|
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.simons ];
|
2007-10-18 13:05:43 +00:00
|
|
|
};
|
|
|
|
}
|