nixpkgs/pkgs/tools/system/smartmontools/default.nix

38 lines
1.2 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, autoreconfHook
, IOKit ? null , ApplicationServices ? null }:
let
version = "7.0";
dbrev = "4883";
drivedbBranch = "RELEASE_${builtins.replaceStrings ["."] ["_"] version}_DRIVEDB";
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";
sha256 = "07x3haz65jyhj579h4z17v6jkw6bbyid34442gl4qddmgv2qzvwx";
2017-10-17 02:51:26 +00:00
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";
2018-11-24 18:58:03 +00:00
homepage = https://www.smartmontools.org/;
license = licenses.gpl2Plus;
maintainers = with maintainers; [ peti ];
platforms = with platforms; linux ++ darwin;
};
}