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
|
2013-08-28 16:57:52 +02:00
|
|
|
dbrev = "3849";
|
2012-09-18 19:33:12 +02:00
|
|
|
driverdb = fetchurl {
|
2013-08-28 16:57:52 +02:00
|
|
|
url = "http://sourceforge.net/p/smartmontools/code/${dbrev}/tree/trunk/smartmontools/drivedb.h?format=raw";
|
|
|
|
sha256 = "06c1cl0x4sq64l3rmd5rk8wsbggjixphpgj0kf4awqhjgsi102xz";
|
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 {
|
2014-10-07 21:08:46 +02:00
|
|
|
name = "smartmontools-6.3";
|
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";
|
2014-10-07 21:08:46 +02:00
|
|
|
sha256 = "06gy71jh2d3gcfmlbbrsqw7215knkfq59q3j6qdxfrar39fhcxx7";
|
2007-10-18 15:05:43 +02:00
|
|
|
};
|
|
|
|
|
2012-11-20 11:16:32 +01:00
|
|
|
patchPhase = ''
|
2013-07-27 11:05:59 +02:00
|
|
|
: cp ${driverdb} drivedb.h
|
2012-11-20 11:16:32 +01:00
|
|
|
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
|
|
|
|
2015-05-15 18:41:33 +02:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Tools for monitoring the health of hard drives";
|
|
|
|
homepage = http://smartmontools.sourceforge.net/;
|
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
platforms = with platforms; linux ++ darwin;
|
|
|
|
maintainers = [ maintainers.simons ];
|
2007-10-18 15:05:43 +02:00
|
|
|
};
|
|
|
|
}
|