2017-01-31 03:07:44 +00:00
|
|
|
{ stdenv, fetchurl,
|
|
|
|
IOKit ? null , ApplicationServices ? null }:
|
2007-10-18 14:05:43 +01:00
|
|
|
|
2012-07-02 09:42:42 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2017-01-31 03:07:44 +00:00
|
|
|
version = "6.5";
|
2015-11-27 23:58:49 +00:00
|
|
|
name = "smartmontools-${version}";
|
2011-07-08 11:51:18 +01:00
|
|
|
|
2007-10-18 14:05:43 +01:00
|
|
|
src = fetchurl {
|
2009-08-10 07:44:08 +01:00
|
|
|
url = "mirror://sourceforge/smartmontools/${name}.tar.gz";
|
2017-01-31 03:07:44 +00:00
|
|
|
sha256 = "1g25r6sx85b5lay5n6sbnqv05qxzj6xsafsp93hnrg1h044bps49";
|
2007-10-18 14:05:43 +01:00
|
|
|
};
|
|
|
|
|
2017-01-31 03:07:44 +00:00
|
|
|
buildInputs = [] ++ stdenv.lib.optionals stdenv.isDarwin [IOKit ApplicationServices];
|
2016-08-12 06:11:24 +01:00
|
|
|
|
2017-01-31 03:07:44 +00:00
|
|
|
patches = [ ./smartmontools.patch ];
|
2012-09-18 18:33:12 +01:00
|
|
|
|
2015-05-15 17:41:33 +01:00
|
|
|
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;
|
2016-05-16 21:30:20 +01:00
|
|
|
maintainers = [ maintainers.peti ];
|
2007-10-18 14:05:43 +01:00
|
|
|
};
|
|
|
|
}
|