GNU bug report logs -
#75146
[PATCH v0 00/15] XFCE: Move source from generated archive to git.
Previous Next
Full log
Message #215 received at 75146 <at> debbugs.gnu.org (full text, mbox):
From: Ashvith Shetty <Ashvith <at> 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
This bug report was last modified 197 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.