2019-06-16 21:59:06 +02:00
|
|
|
{ stdenv, fetchurl, autoreconfHook
|
2017-07-31 08:14:50 +02:00
|
|
|
, IOKit ? null , ApplicationServices ? null }:
|
2017-02-23 00:17:51 +01:00
|
|
|
|
|
|
|
let
|
2019-01-01 19:02:47 +01:00
|
|
|
version = "7.0";
|
2017-02-23 00:17:51 +01:00
|
|
|
|
2019-01-01 19:02:47 +01:00
|
|
|
dbrev = "4883";
|
2017-02-23 00:17:51 +01:00
|
|
|
drivedbBranch = "RELEASE_${builtins.replaceStrings ["."] ["_"] version}_DRIVEDB";
|
|
|
|
driverdb = fetchurl {
|
2018-11-24 19:58:03 +01:00
|
|
|
url = "https://sourceforge.net/p/smartmontools/code/${dbrev}/tree/branches/${drivedbBranch}/smartmontools/drivedb.h?format=raw";
|
2019-01-01 19:02:47 +01:00
|
|
|
sha256 = "07x3haz65jyhj579h4z17v6jkw6bbyid34442gl4qddmgv2qzvwx";
|
2017-10-17 04:51:26 +02:00
|
|
|
name = "smartmontools-drivedb.h";
|
2017-02-23 00:17:51 +01:00
|
|
|
};
|
|
|
|
|
2017-07-31 08:14:50 +02:00
|
|
|
in stdenv.mkDerivation rec {
|
2015-11-28 00:58:49 +01:00
|
|
|
name = "smartmontools-${version}";
|
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";
|
2019-01-01 19:02:47 +01:00
|
|
|
sha256 = "077nx2rn9szrg6isdh0938zbp7vr3dsyxl4jdyyzv1xwhqksrqg5";
|
2007-10-18 15:05:43 +02:00
|
|
|
};
|
|
|
|
|
2019-01-01 19:02:47 +01:00
|
|
|
patches = [ ./smartmontools.patch ];
|
2017-02-23 00:17:51 +01:00
|
|
|
postPatch = "cp -v ${driverdb} drivedb.h";
|
2012-09-18 19:33:12 +02:00
|
|
|
|
2017-07-31 08:14:50 +02:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
buildInputs = [] ++ stdenv.lib.optionals stdenv.isDarwin [IOKit ApplicationServices];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2015-05-15 18:41:33 +02:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Tools for monitoring the health of hard drives";
|
2018-11-24 19:58:03 +01:00
|
|
|
homepage = https://www.smartmontools.org/;
|
2017-07-31 08:14:50 +02:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = with maintainers; [ peti ];
|
|
|
|
platforms = with platforms; linux ++ darwin;
|
2007-10-18 15:05:43 +02:00
|
|
|
};
|
|
|
|
}
|