[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
06/10: gnu: arc-icon-theme: Move to gnome-xyz.
From: |
guix-commits |
Subject: |
06/10: gnu: arc-icon-theme: Move to gnome-xyz. |
Date: |
Thu, 7 Jan 2021 13:36:59 -0500 (EST) |
leoprikler pushed a commit to branch master
in repository guix.
commit 7ae52dd04f67a215be6d5bfc3135a3baad0a7c13
Author: Leo Prikler <leo.prikler@student.tugraz.at>
AuthorDate: Sun Jan 3 00:01:13 2021 +0100
gnu: arc-icon-theme: Move to gnome-xyz.
* gnu/packages/gnome.scm (arc-icon-theme): Move from here...
* gnu/packages/gnome-xyz.scm (arc-icon-theme): ... to here.
---
gnu/packages/gnome-xyz.scm | 35 +++++++++++++++++++++++++++++++++++
gnu/packages/gnome.scm | 35 -----------------------------------
2 files changed, 35 insertions(+), 35 deletions(-)
diff --git a/gnu/packages/gnome-xyz.scm b/gnu/packages/gnome-xyz.scm
index 4539cdd..0477ccf 100644
--- a/gnu/packages/gnome-xyz.scm
+++ b/gnu/packages/gnome-xyz.scm
@@ -96,6 +96,41 @@ like Gnome, Unity, Budgie, Pantheon, XFCE, Mate and others.")
(home-page "https://github.com/vinceliuice/matcha")
(license license:gpl3+)))
+(define-public arc-icon-theme
+ (package
+ (name "arc-icon-theme")
+ (version "20161122")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/horst3180/arc-icon-theme")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1ch3hp08qri93510hypzz6m2x4xgg2h15wvnhjwh1x1s1b7jvxjd"))))
+ (build-system gnu-build-system)
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ (add-after 'unpack 'disable-configure-during-bootstrap
+ (lambda _
+ (substitute* "autogen.sh"
+ (("^\"\\$srcdir/configure\".*") ""))
+ #t)))))
+ (native-inputs
+ `(("autoconf" ,autoconf)
+ ("automake" ,automake)))
+ ;; When Arc is missing an icon, it looks in the Moka icon theme for it.
+ (propagated-inputs
+ `(("moka-icon-theme" ,moka-icon-theme)))
+ (synopsis "Arc icon theme")
+ (description "The Arc icon theme provides a set of icons matching the
+style of the Arc GTK theme. Icons missing from the Arc theme are provided by
+the Moka icon theme.")
+ (home-page "https://github.com/horst3180/arc-icon-theme")
+ (license license:gpl3+)))
+
(define-public delft-icon-theme
(package
(name "delft-icon-theme")
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index b499684..3372a6f 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -9626,41 +9626,6 @@ simple and consistent.")
(license (list license:gpl3+
license:cc-by-sa4.0))))
-(define-public arc-icon-theme
- (package
- (name "arc-icon-theme")
- (version "20161122")
- (source
- (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/horst3180/arc-icon-theme")
- (commit version)))
- (file-name (git-file-name name version))
- (sha256
- (base32 "1ch3hp08qri93510hypzz6m2x4xgg2h15wvnhjwh1x1s1b7jvxjd"))))
- (build-system gnu-build-system)
- (arguments
- `(#:phases
- (modify-phases %standard-phases
- (add-after 'unpack 'disable-configure-during-bootstrap
- (lambda _
- (substitute* "autogen.sh"
- (("^\"\\$srcdir/configure\".*") ""))
- #t)))))
- (native-inputs
- `(("autoconf" ,autoconf)
- ("automake" ,automake)))
- ;; When Arc is missing an icon, it looks in the Moka icon theme for it.
- (propagated-inputs
- `(("moka-icon-theme" ,moka-icon-theme)))
- (synopsis "Arc icon theme")
- (description "The Arc icon theme provides a set of icons matching the
-style of the Arc GTK theme. Icons missing from the Arc theme are provided by
-the Moka icon theme.")
- (home-page "https://github.com/horst3180/arc-icon-theme")
- (license license:gpl3+)))
-
(define-public folks
(package
(name "folks")
- branch master updated (ec732a4 -> 4765cf4), guix-commits, 2021/01/07
- 01/10: gnu: delft-icon-theme: Update to 1.14., guix-commits, 2021/01/07
- 03/10: gnu: greybird-gtk-theme: Update to 3.22.13., guix-commits, 2021/01/07
- 02/10: gnu: matcha-theme: Update to 2021-01-01., guix-commits, 2021/01/07
- 06/10: gnu: arc-icon-theme: Move to gnome-xyz.,
guix-commits <=
- 05/10: gnu: arc-theme: Move to gnome-xyz., guix-commits, 2021/01/07
- 08/10: gnu: gnome-xyz.scm: Reorder packages., guix-commits, 2021/01/07
- 09/10: gnu: Add materia-theme., guix-commits, 2021/01/07
- 04/10: gnu: papirus-icon-theme: Update to 20210101., guix-commits, 2021/01/07
- 07/10: gnu: Move faba-icon-theme and moka-icon-theme to gnome-xyz.scm, guix-commits, 2021/01/07
- 10/10: gnu: Update copyright line., guix-commits, 2021/01/07