2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl, autoreconfHook
|
2020-08-16 19:48:03 +01:00
|
|
|
, mailutils, inetutils
|
2021-01-17 23:09:10 +00:00
|
|
|
, IOKit, ApplicationServices }:
|
2017-02-22 23:17:51 +00:00
|
|
|
|
|
|
|
let
|
2021-01-17 23:09:10 +00:00
|
|
|
version = "7.2";
|
2017-02-22 23:17:51 +00:00
|
|
|
|
2021-01-17 23:09:10 +00:00
|
|
|
dbrev = "5164";
|
|
|
|
drivedbBranch = "RELEASE_7_2_DRIVEDB";
|
2017-02-22 23:17:51 +00:00
|
|
|
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";
|
2021-01-17 23:09:10 +00:00
|
|
|
sha256 = "1vj0sv3bgcd0lwk5x450brfyxksa5fn1mjgvmj994ab8spmicc43";
|
2017-10-17 03:51:26 +01:00
|
|
|
name = "smartmontools-drivedb.h";
|
2017-02-22 23:17:51 +00:00
|
|
|
};
|
|
|
|
|
2017-07-31 07:14:50 +01:00
|
|
|
in stdenv.mkDerivation rec {
|
2019-08-13 22:52:01 +01:00
|
|
|
pname = "smartmontools";
|
|
|
|
inherit version;
|
2011-07-08 11:51:18 +01:00
|
|
|
|
2007-10-18 14:05:43 +01:00
|
|
|
src = fetchurl {
|
2019-08-13 22:52:01 +01:00
|
|
|
url = "mirror://sourceforge/smartmontools/${pname}-${version}.tar.gz";
|
2021-01-17 23:09:10 +00:00
|
|
|
sha256 = "1mlc25sd5rgj5xmzcllci47inmfdw7cp185fday6hc9rwqkqmnaw";
|
2007-10-18 14:05:43 +01: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 18:33:12 +01:00
|
|
|
|
2020-08-16 19:48:03 +01:00
|
|
|
configureFlags = [
|
2021-01-15 09:19:50 +00:00
|
|
|
"--with-scriptpath=${lib.makeBinPath [ mailutils inetutils ]}"
|
2020-08-16 19:48:03 +01:00
|
|
|
];
|
|
|
|
|
2017-07-31 07:14:50 +01:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
2021-01-15 09:19:50 +00:00
|
|
|
buildInputs = [] ++ lib.optionals stdenv.isDarwin [IOKit ApplicationServices];
|
2017-07-31 07:14:50 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2015-05-15 17:41:33 +01:00
|
|
|
description = "Tools for monitoring the health of hard drives";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.smartmontools.org/";
|
2017-07-31 07:14:50 +01:00
|
|
|
license = licenses.gpl2Plus;
|
2020-02-26 07:10:05 +00:00
|
|
|
maintainers = with maintainers; [ peti Frostman ];
|
2017-07-31 07:14:50 +01:00
|
|
|
platforms = with platforms; linux ++ darwin;
|
2007-10-18 14:05:43 +01:00
|
|
|
};
|
|
|
|
}
|