Merge pull request #7852 from henrytill/smartmontools

smartmontools: clean up meta, add darwin to meta.platforms
This commit is contained in:
Arseniy Seroka 2015-05-15 19:54:58 +03:00
commit 66b8d766e3

View file

@ -21,11 +21,11 @@ stdenv.mkDerivation rec {
sed -i -e 's@which which >/dev/null || exit 1@alias which="type -p"@' update-smart-drivedb.in sed -i -e 's@which which >/dev/null || exit 1@alias which="type -p"@' update-smart-drivedb.in
''; '';
meta = { meta = with stdenv.lib; {
description = "Tools for monitoring the health of hard drivers"; description = "Tools for monitoring the health of hard drives";
homepage = "http://smartmontools.sourceforge.net/"; homepage = http://smartmontools.sourceforge.net/;
license = stdenv.lib.licenses.gpl2Plus; license = licenses.gpl2Plus;
platforms = stdenv.lib.platforms.linux; platforms = with platforms; linux ++ darwin;
maintainers = [ stdenv.lib.maintainers.simons ]; maintainers = [ maintainers.simons ];
}; };
} }