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

32 lines
945 B
Nix

{ stdenv, fetchurl }:
let
dbrev = "3849";
driverdb = fetchurl {
url = "http://sourceforge.net/p/smartmontools/code/${dbrev}/tree/trunk/smartmontools/drivedb.h?format=raw";
sha256 = "06c1cl0x4sq64l3rmd5rk8wsbggjixphpgj0kf4awqhjgsi102xz";
name = "smartmontools-drivedb.h";
};
in
stdenv.mkDerivation rec {
name = "smartmontools-6.3";
src = fetchurl {
url = "mirror://sourceforge/smartmontools/${name}.tar.gz";
sha256 = "06gy71jh2d3gcfmlbbrsqw7215knkfq59q3j6qdxfrar39fhcxx7";
};
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 ];
};
}