about summary refs log tree commit diff
path: root/pkgs/desktops/gnome-2/desktop
diff options
context:
space:
mode:
authorJosé Romildo Malaquias <malaquias@gmail.com>2020-04-03 22:27:57 -0300
committerJosé Romildo Malaquias <malaquias@gmail.com>2020-04-03 22:27:57 -0300
commit91bf69cb6b27fab4ee128a4b076857896009e15c (patch)
treeaab84aea9f1d4e61dcdb7057068abcc262cb8082 /pkgs/desktops/gnome-2/desktop
parent6e337f2f9e6b5b1c2649896085989585dae78c30 (diff)
downloadnixlib-91bf69cb6b27fab4ee128a4b076857896009e15c.tar
nixlib-91bf69cb6b27fab4ee128a4b076857896009e15c.tar.gz
nixlib-91bf69cb6b27fab4ee128a4b076857896009e15c.tar.bz2
nixlib-91bf69cb6b27fab4ee128a4b076857896009e15c.tar.lz
nixlib-91bf69cb6b27fab4ee128a4b076857896009e15c.tar.xz
nixlib-91bf69cb6b27fab4ee128a4b076857896009e15c.tar.zst
nixlib-91bf69cb6b27fab4ee128a4b076857896009e15c.zip
gnome2.gnome_icon_theme: add meta attributes
Diffstat (limited to 'pkgs/desktops/gnome-2/desktop')
-rw-r--r--pkgs/desktops/gnome-2/desktop/gnome-icon-theme/default.nix8
1 files changed, 6 insertions, 2 deletions
diff --git a/pkgs/desktops/gnome-2/desktop/gnome-icon-theme/default.nix b/pkgs/desktops/gnome-2/desktop/gnome-icon-theme/default.nix
index a7217c403870..c858f99b980d 100644
--- a/pkgs/desktops/gnome-2/desktop/gnome-icon-theme/default.nix
+++ b/pkgs/desktops/gnome-2/desktop/gnome-icon-theme/default.nix
@@ -14,7 +14,11 @@ stdenv.mkDerivation rec {
   # remove a tree of dirs with no files within
   postInstall = '' rm -r "$out/share/locale" '';
 
-  meta = {
-    platforms = stdenv.lib.platforms.linux;
+  meta = with stdenv.lib; {
+    description = "Collection of icons for the GNOME 2 desktop";
+    homepage = "https://download.gnome.org/sources/gnome-icon-theme/";
+    license = licenses.gpl3Plus;
+    platforms = platforms.linux;
+    maintainers = [ maintainers.romildo ];
   };
 }