GNU bug report logs -
#38095
[PATCH] gnu: Add matcha-theme.
Previous Next
Full log
View this message in rfc822 format
Forgot license header.
From 0107cd76c0db3c70cc1e1ccdbc8be9710337e711 Mon Sep 17 00:00:00 2001
From: Alexandros Theodotou <alex <at> zrythm.org>
Date: Thu, 7 Nov 2019 05:37:42 +0000
Subject: [PATCH] gnu: Add matcha-theme.
* gnu/packages/matcha-theme.scm (matcha-theme): New variable.
---
gnu/packages/gnome.scm | 50 ++++++++++++++++++++++++++++++++++++++++++
1 file changed, 50 insertions(+)
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index cd881b5b87..c044d33537 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -42,6 +42,7 @@
;;; Copyright © 2019 Maxim Cournoyer <maxim.cournoyer <at> gmail.com>
;;; Copyright © 2019 Martin Becze <mjbecze <at> riseup.net>
;;; Copyright © 2019 David Wilson <david <at> daviwil.com>
+;;; Copyright © 2019 Alexandros Theodotou <alex <at> zrythm.org>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -7105,6 +7106,55 @@ dark elements. It supports GNOME, Unity, Xfce,
and Openbox.")
(home-page "https://numixproject.github.io")
(license license:gpl3+)))
+(define-public matcha-theme
+ (package
+ (name "matcha-theme")
+ (version "2019-11-02")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append
"https://github.com/vinceliuice/matcha/archive/" version
+ ".tar.gz"))
+ (sha256
+ (base32
+
"0vv16lxrfin187rbn844hfkrg3368in1wmmnygsnag8k2pzhw1a4"))))
+ (build-system trivial-build-system)
+ (outputs '("out"))
+ (arguments
+ '(#:modules ((guix build utils))
+ #:builder
+ (begin
+ (use-modules (guix build utils))
+ (let* ((out (assoc-ref %outputs "out"))
+ (source (assoc-ref %build-inputs "source"))
+ (tar (assoc-ref %build-inputs "tar"))
+ (bash (assoc-ref %build-inputs "bash"))
+ (gzip (assoc-ref %build-inputs "gzip"))
+ (coreutils (assoc-ref %build-inputs "coreutils"))
+ (themesdir (string-append out "/share/themes")))
+ (setenv "PATH" (string-append tar "/bin:"
+ (string-append gzip "/bin:")
+ (string-append coreutils
"/bin:")))
+ (invoke "tar" "xf" source)
+ (chdir "matcha-2019-11-02")
+ (substitute* "Install" (("/bin/bash") (string-append bash
"/bin/bash")))
+ (mkdir-p themesdir)
+ (invoke (string-append bash "/bin/bash") "-c"
+ (string-append "./Install -d " themesdir))))))
+ (inputs
+ `(("gtk-engines", gtk-engines)))
+ (native-inputs
+ `(("tar", tar)
+ ("bash", bash)
+ ("coreutils", coreutils)
+ ("gzip", gzip)))
+ (synopsis "Flat design theme for GTK 3, GTK 2 and GNOME-Shell")
+ (description
+ "Matcha is a flat Design theme for GTK 3, GTK 2 and Gnome-Shell
+which supports GTK 3 and GTK 2 based desktop environments
+like Gnome, Unity, Budgie, Pantheon, XFCE, Mate and others.")
+ (home-page "https://github.com/vinceliuice/matcha")
+ (license license:gpl3)))
+
(define-public arc-theme
(package
(name "arc-theme")
--
2.24.0
This bug report was last modified 5 years and 197 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.