2017-02-22 23:17:51 +00:00
|
|
|
{ stdenv, fetchurl, IOKit ? null , ApplicationServices ? null }:
|
|
|
|
|
|
|
|
let
|
2007-10-18 13:05:43 +00:00
|
|
|
|
2017-01-31 03:07:44 +00:00
|
|
|
version = "6.5";
|
2017-02-22 23:17:51 +00:00
|
|
|
|
|
|
|
dbrev = "4391";
|
|
|
|
drivedbBranch = "RELEASE_${builtins.replaceStrings ["."] ["_"] version}_DRIVEDB";
|
|
|
|
driverdb = fetchurl {
|
|
|
|
url = "http://sourceforge.net/p/smartmontools/code/${dbrev}/tree/branches/${drivedbBranch}/smartmontools/drivedb.h?format=raw";
|
|
|
|
sha256 = "1da99m81wr0rjdhcz2xx0sbbrqxkxffja2kllg4srmhih7fps5p1";
|
|
|
|
name = "smartmontools-drivedb.h";
|
|
|
|
};
|
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-11-27 23:58:49 +00:00
|
|
|
name = "smartmontools-${version}";
|
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";
|
2017-01-31 03:07:44 +00:00
|
|
|
sha256 = "1g25r6sx85b5lay5n6sbnqv05qxzj6xsafsp93hnrg1h044bps49";
|
2007-10-18 13:05:43 +00:00
|
|
|
};
|
|
|
|
|
2017-01-31 03:07:44 +00:00
|
|
|
buildInputs = [] ++ stdenv.lib.optionals stdenv.isDarwin [IOKit ApplicationServices];
|
2016-08-12 05:11:24 +00:00
|
|
|
|
2017-01-31 03:07:44 +00:00
|
|
|
patches = [ ./smartmontools.patch ];
|
2017-02-22 23:17:51 +00:00
|
|
|
postPatch = "cp -v ${driverdb} drivedb.h";
|
2012-09-18 17:33:12 +00:00
|
|
|
|
2015-05-15 16:41:33 +00: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;
|
2016-05-16 20:30:20 +00:00
|
|
|
maintainers = [ maintainers.peti ];
|
2007-10-18 13:05:43 +00:00
|
|
|
};
|
|
|
|
}
|