2016-08-12 05:11:24 +00:00
|
|
|
{ stdenv, fetchurl
|
|
|
|
, IOKit ? null }:
|
2007-10-18 13:05:43 +00:00
|
|
|
|
2012-09-18 17:33:12 +00:00
|
|
|
let
|
2015-11-27 23:58:49 +00:00
|
|
|
version = "6.4";
|
|
|
|
drivedbBranch = "RELEASE_${builtins.replaceStrings ["."] ["_"] version}_DRIVEDB";
|
|
|
|
dbrev = "4167";
|
2012-09-18 17:33:12 +00:00
|
|
|
driverdb = fetchurl {
|
2015-11-27 23:58:49 +00:00
|
|
|
url = "http://sourceforge.net/p/smartmontools/code/${dbrev}/tree/branches/${drivedbBranch}/smartmontools/drivedb.h?format=raw";
|
|
|
|
sha256 = "14rv1cxbpmnq12hjwr3icjiahx5i0ak7j69310c09rah0241l5j1";
|
2012-11-20 10:16:32 +00:00
|
|
|
name = "smartmontools-drivedb.h";
|
2012-09-18 17:33:12 +00:00
|
|
|
};
|
|
|
|
in
|
2012-07-02 08:42:42 +00:00
|
|
|
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";
|
2015-11-27 23:58:49 +00:00
|
|
|
sha256 = "11bsxcghh7adzdklcslamlynydxb708vfz892d5w7agdq405ddza";
|
2007-10-18 13:05:43 +00:00
|
|
|
};
|
|
|
|
|
2016-08-12 05:11:24 +00:00
|
|
|
buildInputs = [] ++ stdenv.lib.optional stdenv.isDarwin IOKit;
|
|
|
|
|
2012-11-20 10:16:32 +00:00
|
|
|
patchPhase = ''
|
2015-11-27 23:58:49 +00:00
|
|
|
cp ${driverdb} drivedb.h
|
2012-11-20 10:16:32 +00:00
|
|
|
sed -i -e 's@which which >/dev/null || exit 1@alias which="type -p"@' update-smart-drivedb.in
|
|
|
|
'';
|
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
|
|
|
};
|
|
|
|
}
|