summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlvin Hsu <aurtzy@gmail.com>2025-10-26 16:48:32 -0400
committerMaxim Cournoyer <maxim@guixotic.coop>2026-08-27 14:24:38 +0900
commitfa98049614590612cc234395028b7e72a4ad7a58 (patch)
tree1324d51668c4d15b5c2740d7817428e722cefd69
parent78a64eadc35e4be92ef78c1b3b0ca6d684ea9c1f (diff)
gnu: adwaita-icon-theme: Propagate inherited icon sets.
* gnu/packages/gnome.scm (adwaita-icon-theme) [propagated-inputs]: Add adwaita-icon-theme-legacy and hicolor-icon-theme. Signed-off-by: Maxim Cournoyer <maxim@guixotic.coop>
-rw-r--r--gnu/packages/gnome.scm9
1 files changed, 7 insertions, 2 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 6ec5b697675..04f1ad0b573 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -3003,8 +3003,13 @@ Freedesktop Icon Naming Specification.")
3003 #~(modify-phases %standard-phases 3003 #~(modify-phases %standard-phases
3004 (add-after 'unpack 'patch-meson 3004 (add-after 'unpack 'patch-meson
3005 ;; Don't create 'icon-theme.cache'. 3005 ;; Don't create 'icon-theme.cache'.
3006 (lambda _ (substitute* "meson.build" 3006 (lambda _
3007 (("gtk4?-update-icon-cache") "true"))))))) 3007 (substitute* "meson.build"
3008 (("gtk4?-update-icon-cache") "true")))))))
3009 ;; The Adwaita icon theme inherits from both AdwaitaLegacy and hicolor,
3010 ;; per its index.theme file ("Inherits=AdwaitaLegacy,hicolor"); propagate
3011 ;; them so the theme is always fully defined.
3012 (propagated-inputs (list adwaita-icon-theme-legacy hicolor-icon-theme))
3008 (home-page "https://gitlab.gnome.org/GNOME/adwaita-icon-theme") 3013 (home-page "https://gitlab.gnome.org/GNOME/adwaita-icon-theme")
3009 (synopsis "GNOME icon theme") 3014 (synopsis "GNOME icon theme")
3010 (description "Icons for the GNOME desktop.") 3015 (description "Icons for the GNOME desktop.")