38 lines
1.2 KiB
Nix
38 lines
1.2 KiB
Nix
{ stdenv, fetchurl, fetchpatch, autoreconfHook
|
|
, IOKit ? null , ApplicationServices ? null }:
|
|
|
|
let
|
|
version = "7.0";
|
|
|
|
dbrev = "4883";
|
|
drivedbBranch = "RELEASE_${builtins.replaceStrings ["."] ["_"] version}_DRIVEDB";
|
|
driverdb = fetchurl {
|
|
url = "https://sourceforge.net/p/smartmontools/code/${dbrev}/tree/branches/${drivedbBranch}/smartmontools/drivedb.h?format=raw";
|
|
sha256 = "07x3haz65jyhj579h4z17v6jkw6bbyid34442gl4qddmgv2qzvwx";
|
|
name = "smartmontools-drivedb.h";
|
|
};
|
|
|
|
in stdenv.mkDerivation rec {
|
|
name = "smartmontools-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/smartmontools/${name}.tar.gz";
|
|
sha256 = "077nx2rn9szrg6isdh0938zbp7vr3dsyxl4jdyyzv1xwhqksrqg5";
|
|
};
|
|
|
|
patches = [ ./smartmontools.patch ];
|
|
postPatch = "cp -v ${driverdb} drivedb.h";
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
buildInputs = [] ++ stdenv.lib.optionals stdenv.isDarwin [IOKit ApplicationServices];
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Tools for monitoring the health of hard drives";
|
|
homepage = https://www.smartmontools.org/;
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ peti ];
|
|
platforms = with platforms; linux ++ darwin;
|
|
};
|
|
}
|