2012-07-02 10:42:42 +02:00
|
|
|
{ stdenv, fetchurl }:
|
2007-10-18 15:05:43 +02:00
|
|
|
|
2012-09-18 19:33:12 +02:00
|
|
|
let
|
|
|
|
driverdb = fetchurl {
|
2013-03-18 12:02:43 +01:00
|
|
|
url = "http://smartmontools.svn.sourceforge.net/viewvc/smartmontools/trunk/smartmontools/drivedb.h?revision=3797";
|
|
|
|
sha256 = "01ycm3vffxpfvfga9vp1d38jy3lqpkpxnxf78pidc8q1nn8bpdyz";
|
2012-11-20 11:16:32 +01:00
|
|
|
name = "smartmontools-drivedb.h";
|
2012-09-18 19:33:12 +02:00
|
|
|
};
|
|
|
|
in
|
2012-07-02 10:42:42 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2013-03-18 12:02:43 +01:00
|
|
|
name = "smartmontools-6.1";
|
2011-07-08 12:51:18 +02:00
|
|
|
|
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";
|
2013-03-18 12:02:43 +01:00
|
|
|
sha256 = "01yfv6hqsqandg6x8mnwa4g42hhqvc7dfxnfb3v849n8rj5kn059";
|
2007-10-18 15:05:43 +02:00
|
|
|
};
|
|
|
|
|
2012-11-20 11:16:32 +01:00
|
|
|
patchPhase = ''
|
|
|
|
cp ${driverdb} drivedb.h
|
|
|
|
sed -i -e 's@which which >/dev/null || exit 1@alias which="type -p"@' update-smart-drivedb.in
|
|
|
|
'';
|
2012-09-18 19:33:12 +02:00
|
|
|
|
2007-10-18 15:05:43 +02:00
|
|
|
meta = {
|
|
|
|
description = "Tools for monitoring the health of hard drivers";
|
2012-07-02 10:42:42 +02:00
|
|
|
homepage = "http://smartmontools.sourceforge.net/";
|
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.simons ];
|
2007-10-18 15:05:43 +02:00
|
|
|
};
|
|
|
|
}
|