mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
32 lines
945 B
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 ];
|
|
};
|
|
}
|