[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
- [bug#75146] [PATCH v3 11/16] gnu: xfce4-panel: Switch to git source., (continued)
- [bug#75146] [PATCH v4 00/68] xfce updates, iyzsong, 2024/12/31
- [bug#75146] [PATCH v4 01/68] gnu: xfce4-dev-tools: Switch to git source., iyzsong, 2024/12/31
- [bug#75146] [PATCH v4 03/68] gnu: xfce4-dev-tools: Fix XDT_CHECK_PACKAGE_BINARY for non-absolute paths., iyzsong, 2024/12/31
- [bug#75146] [PATCH v4 02/68] gnu: xfce4-dev-tools: Add more propagated inputs., iyzsong, 2024/12/31
- [bug#75146] [PATCH v4 06/68] gnu: libxfce4ui: Switch to git source., iyzsong, 2024/12/31
- [bug#75146] [PATCH v4 08/68] gnu: exo: Switch to git source., iyzsong, 2024/12/31
- [bug#75146] [PATCH v4 15/68] gnu: elementary-xfce-icon-theme: Use new style.,
iyzsong <=
- [bug#75146] [PATCH v4 14/68] gnu: xfce4-pulseaudio-plugin: Switch to git source., iyzsong, 2024/12/31
- [bug#75146] [PATCH v4 10/68] gnu: tumbler: Switch to git source., iyzsong, 2024/12/31
- [bug#75146] [PATCH v4 04/68] gnu: libxfce4util: Switch to git source., iyzsong, 2024/12/31
- [bug#75146] [PATCH v4 17/68] gnu: xfce4-whiskermenu-plugin: Switch to git source., iyzsong, 2024/12/31
- [bug#75146] [PATCH v4 05/68] gnu: xfconf: Switch to git source., iyzsong, 2024/12/31
- [bug#75146] [PATCH v4 07/68] gnu: libxfce4windowing: Switch to git source., iyzsong, 2024/12/31
- [bug#75146] [PATCH v4 12/68] gnu: xfce4-battery-plugin: Update to 1.1.6., iyzsong, 2024/12/31
- [bug#75146] [PATCH v4 19/68] gnu: xfce4-appfinder: Switch to git source., iyzsong, 2024/12/31
- [bug#75146] [PATCH v4 13/68] gnu: xfce4-clipman-plugin: Update to 1.6.7., iyzsong, 2024/12/31
- [bug#75146] [PATCH v4 11/68] gnu: xfce4-panel: Switch to git source., iyzsong, 2024/12/31