guix-patches
[Top][All Lists]
Advanced

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

[bug#75146] [PATCH v4 15/68] gnu: elementary-xfce-icon-theme: Use new st


From: iyzsong
Subject: [bug#75146] [PATCH v4 15/68] gnu: elementary-xfce-icon-theme: Use new style.
Date: Tue, 31 Dec 2024 14:43:45 +0800

From: Ashvith Shetty <Ashvith@noreply.codeberg.org>

* gnu/packages/xfce.scm (elementary-xfce-icon-theme)[arguments]: Use 
G-Expressions.

Change-Id: I70ad49c16c30d519c0745462e33c86ad459c5b1b
---
 gnu/packages/xfce.scm | 41 ++++++++++++++++++++---------------------
 1 file changed, 20 insertions(+), 21 deletions(-)

diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm
index 3520ceaba4..61377e2f16 100644
--- a/gnu/packages/xfce.scm
+++ b/gnu/packages/xfce.scm
@@ -275,31 +275,30 @@ (define-public elementary-xfce-icon-theme
   (package
     (name "elementary-xfce-icon-theme")
     (version "0.20")
-    (source (origin
-              (method git-fetch)
-              (uri
-               (git-reference
-                (url "https://github.com/shimmerproject/elementary-xfce";)
-                (commit (string-append "v" version))))
-              (file-name (git-file-name name version))
-              (sha256
-               (base32
-                "0fdfqf98rk3z30qcs5ca3i3ybwg4icvq6yrxwv8i3yl0ikw6rc4k"))))
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/shimmerproject/elementary-xfce";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0fdfqf98rk3z30qcs5ca3i3ybwg4icvq6yrxwv8i3yl0ikw6rc4k"))))
     (build-system gnu-build-system)
     (arguments
-     '(#:tests? #f                      ; no check target
-       #:make-flags '("CC=gcc")
-       #:phases
-       (modify-phases %standard-phases
-         (add-after 'unpack 'make-git-checkout-writable
-           (lambda _
-             (for-each make-file-writable (find-files "."))
-             #t)))))
-    (native-inputs
-     (list gtk+ optipng pkg-config))
+     (list
+      #:tests? #f ;no check target
+      #:make-flags #~(list "CC=gcc")
+      #:phases #~(modify-phases %standard-phases
+                   (add-after 'unpack 'make-git-checkout-writable
+                     (lambda _
+                       (for-each make-file-writable
+                                 (find-files ".")) #t)))))
+    (native-inputs (list gtk+ optipng pkg-config))
     (home-page "https://shimmerproject.org/";)
     (synopsis "Elementary icons extended and maintained for Xfce")
-    (description "This is a fork of the upstream elementary project.  This icon
+    (description
+     "This is a fork of the upstream elementary project. This icon
 theme is supposed to keep everything working for Xfce, but gets updates from
 upstream occasionally.")
     (license gpl2+)))
-- 
2.46.0






reply via email to

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