2021-01-10 23:54:33 -08:00
|
|
|
{ lib, stdenv, fetchurl, autoreconfHook
|
2021-01-13 23:40:08 -08:00
|
|
|
, mailutils, enableMail ? true
|
|
|
|
, inetutils
|
2021-01-17 15:09:10 -08:00
|
|
|
, IOKit, ApplicationServices }:
|
2017-02-22 15:17:51 -08:00
|
|
|
|
|
|
|
let
|
2021-01-17 15:09:10 -08:00
|
|
|
version = "7.2";
|
2017-02-22 15:17:51 -08:00
|
|
|
|
2021-02-21 04:51:06 -08:00
|
|
|
dbrev = "5171";
|
2021-01-17 15:09:10 -08:00
|
|
|
drivedbBranch = "RELEASE_7_2_DRIVEDB";
|
2017-02-22 15:17:51 -08:00
|
|
|
driverdb = fetchurl {
|
2018-11-24 10:58:03 -08:00
|
|
|
url = "https://sourceforge.net/p/smartmontools/code/${dbrev}/tree/branches/${drivedbBranch}/smartmontools/drivedb.h?format=raw";
|
2021-02-21 04:51:06 -08:00
|
|
|
sha256 = "0vncr98xagbcfsxgfgxsip2qrl9q3y8va19qhv6yknlwbdfap4mn";
|
2017-10-16 19:51:26 -07:00
|
|
|
name = "smartmontools-drivedb.h";
|
2017-02-22 15:17:51 -08:00
|
|
|
};
|
|
|
|
|
2017-07-30 23:14:50 -07:00
|
|
|
in stdenv.mkDerivation rec {
|
2019-08-13 14:52:01 -07:00
|
|
|
pname = "smartmontools";
|
|
|
|
inherit version;
|
2011-07-08 03:51:18 -07:00
|
|
|
|
2007-10-18 06:05:43 -07:00
|
|
|
src = fetchurl {
|
2019-08-13 14:52:01 -07:00
|
|
|
url = "mirror://sourceforge/smartmontools/${pname}-${version}.tar.gz";
|
2021-01-17 15:09:10 -08:00
|
|
|
sha256 = "1mlc25sd5rgj5xmzcllci47inmfdw7cp185fday6hc9rwqkqmnaw";
|
2007-10-18 06:05:43 -07:00
|
|
|
};
|
|
|
|
|
2019-01-01 10:02:47 -08:00
|
|
|
patches = [ ./smartmontools.patch ];
|
2017-02-22 15:17:51 -08:00
|
|
|
postPatch = "cp -v ${driverdb} drivedb.h";
|
2012-09-18 10:33:12 -07:00
|
|
|
|
2020-08-16 11:48:03 -07:00
|
|
|
configureFlags = [
|
2021-01-13 23:40:08 -08:00
|
|
|
"--with-scriptpath=${lib.makeBinPath ([ inetutils ] ++ lib.optional enableMail mailutils)}"
|
2020-08-16 11:48:03 -07:00
|
|
|
];
|
|
|
|
|
2017-07-30 23:14:50 -07:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
2021-01-15 01:19:50 -08:00
|
|
|
buildInputs = [] ++ lib.optionals stdenv.isDarwin [IOKit ApplicationServices];
|
2017-07-30 23:14:50 -07:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2015-05-15 09:41:33 -07:00
|
|
|
description = "Tools for monitoring the health of hard drives";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://www.smartmontools.org/";
|
2017-07-30 23:14:50 -07:00
|
|
|
license = licenses.gpl2Plus;
|
2020-02-25 23:10:05 -08:00
|
|
|
maintainers = with maintainers; [ peti Frostman ];
|
2017-07-30 23:14:50 -07:00
|
|
|
platforms = with platforms; linux ++ darwin;
|
2007-10-18 06:05:43 -07:00
|
|
|
};
|
|
|
|
}
|