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