about summary refs log tree commit diff
path: root/pkgs/tools/system/smartmontools
diff options
context:
space:
mode:
authorHenry Till <henrytill@gmail.com>2015-05-15 12:41:33 -0400
committerHenry Till <henrytill@gmail.com>2015-05-15 12:41:33 -0400
commit8b580fb9d16798d57a462bbaccba6db06e61bb4f (patch)
tree26991e33ccaae2292206d33a8f320678f29743bb /pkgs/tools/system/smartmontools
parentf93a8ee1105f4cc3770ce339a8c1a4acea3b2fb6 (diff)
downloadnixlib-8b580fb9d16798d57a462bbaccba6db06e61bb4f.tar
nixlib-8b580fb9d16798d57a462bbaccba6db06e61bb4f.tar.gz
nixlib-8b580fb9d16798d57a462bbaccba6db06e61bb4f.tar.bz2
nixlib-8b580fb9d16798d57a462bbaccba6db06e61bb4f.tar.lz
nixlib-8b580fb9d16798d57a462bbaccba6db06e61bb4f.tar.xz
nixlib-8b580fb9d16798d57a462bbaccba6db06e61bb4f.tar.zst
nixlib-8b580fb9d16798d57a462bbaccba6db06e61bb4f.zip
smartmontools: clean up meta, add darwin to meta.platforms
Diffstat (limited to 'pkgs/tools/system/smartmontools')
-rw-r--r--pkgs/tools/system/smartmontools/default.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/tools/system/smartmontools/default.nix b/pkgs/tools/system/smartmontools/default.nix
index 87f19640f7ff..72c8f8d028eb 100644
--- a/pkgs/tools/system/smartmontools/default.nix
+++ b/pkgs/tools/system/smartmontools/default.nix
@@ -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
   '';
 
-  meta = {
-    description = "Tools for monitoring the health of hard drivers";
-    homepage = "http://smartmontools.sourceforge.net/";
-    license = stdenv.lib.licenses.gpl2Plus;
-    platforms = stdenv.lib.platforms.linux;
-    maintainers = [ stdenv.lib.maintainers.simons ];
+  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 ];
   };
 }