guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

25/72: gnu: adwaita-icon-theme: Update to 46.2.


From: guix-commits
Subject: 25/72: gnu: adwaita-icon-theme: Update to 46.2.
Date: Fri, 17 Jan 2025 03:44:19 -0500 (EST)

lilyp pushed a commit to branch gnome-team
in repository guix.

commit 4f5c08d96d6e20f930b8a5cb1a6b793835a52617
Author: Liliana Marie Prikler <liliana.prikler@gmail.com>
AuthorDate: Thu Jan 9 22:38:05 2025 +0100

    gnu: adwaita-icon-theme: Update to 46.2.
    
    * gnu/packages/gnome.scm (adwaita-icon-theme): Update to 46.2.
    [build-system]: Use meson-build-system.
    [arguments]: Remove #:make-flags.  Add #:phases.
    [native-inputs]: Drop field.
---
 gnu/packages/gnome.scm | 21 +++++++++------------
 1 file changed, 9 insertions(+), 12 deletions(-)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 9a3c765961..3c6e57c9ae 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -2962,7 +2962,7 @@ GNOME and KDE desktops to the icon names proposed in the 
specification.")
 (define-public adwaita-icon-theme
   (package
     (name "adwaita-icon-theme")
-    (version "44.0")
+    (version "46.2")
     (source (origin
               (method url-fetch)
               (uri (string-append "mirror://gnome/sources/" name "/"
@@ -2970,18 +2970,15 @@ GNOME and KDE desktops to the icon names proposed in 
the specification.")
                                   name "-" version ".tar.xz"))
               (sha256
                (base32
-                "0k3638gkdpjcr9pbsmpfj7vdqdm9s04j4d5sh1fx5v5z3dhcb2a8"))))
-    (build-system gnu-build-system)
+                "1jxmjq7jvbkf6rv01y2vjx2g8iic7gkxa6085rvblfck8awjdcdy"))))
+    (build-system meson-build-system)
     (arguments
-     (list #:make-flags
-           ;; Don't create 'icon-theme.cache'.
-           #~(list "GTK_UPDATE_ICON_CACHE=")))
-    (native-inputs
-     ;; The following requires the SVG pixbuf loader, provided by librsvg,
-     ;; available on x86_64 only.
-     `(,@(if (target-64bit?)
-             `((,gtk+ "bin"))             ;for gtk-encode-symbolic-svg
-             '())))
+     (list #:phases
+           #~(modify-phases %standard-phases
+               (add-after 'unpack 'patch-meson
+                 ;; Don't create 'icon-theme.cache'.
+                 (lambda _ (substitute* "meson.build"
+                        (("gtk4?-update-icon-cache") "true")))))))
     (home-page "https://gitlab.gnome.org/GNOME/adwaita-icon-theme";)
     (synopsis "GNOME icon theme")
     (description "Icons for the GNOME desktop.")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]