2018-01-14 21:31:19 +00:00
|
|
|
{ stdenv, fetchurl, fetchpatch, autoreconfHook
|
2017-07-31 07:14:50 +01:00
|
|
|
, IOKit ? null , ApplicationServices ? null }:
|
2017-02-22 23:17:51 +00:00
|
|
|
|
|
|
|
let
|
2017-11-10 03:47:26 +00:00
|
|
|
version = "6.6";
|
2017-02-22 23:17:51 +00:00
|
|
|
|
2017-10-17 03:51:26 +01:00
|
|
|
dbrev = "4548";
|
2017-02-22 23:17:51 +00:00
|
|
|
drivedbBranch = "RELEASE_${builtins.replaceStrings ["."] ["_"] version}_DRIVEDB";
|
|
|
|
driverdb = fetchurl {
|
2017-10-17 03:51:26 +01:00
|
|
|
url = "http://sourceforge.net/p/smartmontools/code/${dbrev}/tree/branches/${drivedbBranch}/smartmontools/drivedb.h?format=raw";
|
|
|
|
sha256 = "0nwk4ir0c40b01frqm7a0lvljh5k9yhslc3j4485zjsx3v5w269f";
|
|
|
|
name = "smartmontools-drivedb.h";
|
2017-02-22 23:17:51 +00:00
|
|
|
};
|
|
|
|
|
2017-07-31 07:14:50 +01:00
|
|
|
in stdenv.mkDerivation rec {
|
2015-11-27 23:58:49 +00:00
|
|
|
name = "smartmontools-${version}";
|
2011-07-08 11:51:18 +01:00
|
|
|
|
2007-10-18 14:05:43 +01:00
|
|
|
src = fetchurl {
|
2009-08-10 07:44:08 +01:00
|
|
|
url = "mirror://sourceforge/smartmontools/${name}.tar.gz";
|
2017-11-10 03:47:26 +00:00
|
|
|
sha256 = "0m1hllbb78rr6cxkbalmz1gqkl0psgq8rrmv4gwcmz34n07kvx2i";
|
2007-10-18 14:05:43 +01:00
|
|
|
};
|
|
|
|
|
2018-01-14 21:31:19 +00:00
|
|
|
patches = [ ./smartmontools.patch ]
|
|
|
|
# https://www.smartmontools.org/changeset/4603
|
|
|
|
++ stdenv.lib.optional stdenv.hostPlatform.isMusl (fetchpatch {
|
|
|
|
name = "musl-canonicalize_file_name.patch";
|
|
|
|
url = "https://www.smartmontools.org/changeset/4603?format=diff&new=4603";
|
|
|
|
sha256 = "06s9pcd95snjkrbfrsjby2lln3lnwjd21bgabmvr4p7fx19b75zp";
|
|
|
|
stripLen = 2;
|
|
|
|
});
|
2017-02-22 23:17:51 +00:00
|
|
|
postPatch = "cp -v ${driverdb} drivedb.h";
|
2012-09-18 18:33:12 +01:00
|
|
|
|
2017-07-31 07:14:50 +01:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
buildInputs = [] ++ stdenv.lib.optionals stdenv.isDarwin [IOKit ApplicationServices];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2015-05-15 17:41:33 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Tools for monitoring the health of hard drives";
|
2017-07-31 07:14:50 +01:00
|
|
|
homepage = http://smartmontools.sourceforge.net/;
|
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = with maintainers; [ peti ];
|
|
|
|
platforms = with platforms; linux ++ darwin;
|
2007-10-18 14:05:43 +01:00
|
|
|
};
|
|
|
|
}
|