34 lines
1.0 KiB
Nix
34 lines
1.0 KiB
Nix
{ stdenv, fetchurl }:
|
|
|
|
let
|
|
version = "6.4";
|
|
drivedbBranch = "RELEASE_${builtins.replaceStrings ["."] ["_"] version}_DRIVEDB";
|
|
dbrev = "4167";
|
|
driverdb = fetchurl {
|
|
url = "http://sourceforge.net/p/smartmontools/code/${dbrev}/tree/branches/${drivedbBranch}/smartmontools/drivedb.h?format=raw";
|
|
sha256 = "14rv1cxbpmnq12hjwr3icjiahx5i0ak7j69310c09rah0241l5j1";
|
|
name = "smartmontools-drivedb.h";
|
|
};
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
name = "smartmontools-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/smartmontools/${name}.tar.gz";
|
|
sha256 = "11bsxcghh7adzdklcslamlynydxb708vfz892d5w7agdq405ddza";
|
|
};
|
|
|
|
patchPhase = ''
|
|
cp ${driverdb} drivedb.h
|
|
sed -i -e 's@which which >/dev/null || exit 1@alias which="type -p"@' update-smart-drivedb.in
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Tools for monitoring the health of hard drives";
|
|
homepage = http://smartmontools.sourceforge.net/;
|
|
license = licenses.gpl2Plus;
|
|
platforms = with platforms; linux ++ darwin;
|
|
maintainers = [ maintainers.simons ];
|
|
};
|
|
}
|