2021-08-11 12:14:29 +01:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchurl
|
|
|
|
, autoreconfHook
|
|
|
|
, enableMail ? false
|
|
|
|
, mailutils
|
|
|
|
, inetutils
|
|
|
|
, IOKit
|
|
|
|
, ApplicationServices
|
|
|
|
}:
|
2017-02-22 23:17:51 +00:00
|
|
|
|
|
|
|
let
|
2021-02-21 12:51:06 +00:00
|
|
|
dbrev = "5171";
|
2021-01-17 23:09:10 +00:00
|
|
|
drivedbBranch = "RELEASE_7_2_DRIVEDB";
|
2017-02-22 23:17:51 +00:00
|
|
|
driverdb = fetchurl {
|
2021-08-11 12:14:29 +01:00
|
|
|
url = "https://sourceforge.net/p/smartmontools/code/${dbrev}/tree/branches/${drivedbBranch}/smartmontools/drivedb.h?format=raw";
|
2021-02-21 12:51:06 +00:00
|
|
|
sha256 = "0vncr98xagbcfsxgfgxsip2qrl9q3y8va19qhv6yknlwbdfap4mn";
|
2021-08-11 12:14:29 +01:00
|
|
|
name = "smartmontools-drivedb.h";
|
2017-02-22 23:17:51 +00:00
|
|
|
};
|
|
|
|
|
2021-08-11 12:14:29 +01:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-13 22:52:01 +01:00
|
|
|
pname = "smartmontools";
|
2021-07-14 16:10:11 +01:00
|
|
|
version = "7.2";
|
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
|
|
|
};
|
|
|
|
|
2021-02-16 12:26:59 +00:00
|
|
|
patches = [
|
|
|
|
# fixes darwin build
|
|
|
|
./smartmontools.patch
|
|
|
|
];
|
2021-08-11 12:14:29 +01:00
|
|
|
postPatch = ''
|
|
|
|
cp -v ${driverdb} drivedb.h
|
|
|
|
'';
|
2012-09-18 18:33:12 +01:00
|
|
|
|
2021-08-11 12:14:29 +01:00
|
|
|
configureFlags = lib.optional enableMail "--with-scriptpath=${lib.makeBinPath [ inetutils mailutils ]}";
|
2020-08-16 19:48:03 +01:00
|
|
|
|
2017-07-31 07:14:50 +01:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
2021-02-16 12:26:59 +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";
|
2021-08-11 12:14:29 +01:00
|
|
|
homepage = "https://www.smartmontools.org/";
|
|
|
|
license = licenses.gpl2Plus;
|
2020-02-26 07:10:05 +00:00
|
|
|
maintainers = with maintainers; [ peti Frostman ];
|
2021-08-11 12:14:29 +01:00
|
|
|
platforms = with platforms; linux ++ darwin;
|
2021-07-18 10:28:33 +01:00
|
|
|
mainProgram = "smartctl";
|
2007-10-18 14:05:43 +01:00
|
|
|
};
|
|
|
|
}
|