unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Alexandros Theodotou <alex@zrythm.org>
To: 38095@debbugs.gnu.org
Subject: [bug#38095] [PATCH] gnu: Add matcha-theme.
Date: Thu, 07 Nov 2019 16:45:42 +0100	[thread overview]
Message-ID: <3f860943566a5c5c59f97b17d6ecf150@posteo.net> (raw)
In-Reply-To: <2838c4cd8a7085b3b42229c73fb5689e@posteo.net>

Moved to gnu/gnome and added missing dependency

 From 2bfdba6c3edb19b52963b288adf0876bfb0faa12 Mon Sep 17 00:00:00 2001
 From: Alexandros Theodotou <alex@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 | 49 ++++++++++++++++++++++++++++++++++++++++++
  1 file changed, 49 insertions(+)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index cd881b5b87..249a6802f0 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -7105,6 +7105,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

On 07.11.2019 07:02, Alexandros Theodotou wrote:
> From c3dcea272a6600263cc806b64331b3d68d881b9c Mon Sep 17 00:00:00 2001
> From: Alexandros Theodotou <alex@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/matcha-theme.scm | 76 +++++++++++++++++++++++++++++++++++
>  1 file changed, 76 insertions(+)
>  create mode 100644 gnu/packages/matcha-theme.scm
> 
> diff --git a/gnu/packages/matcha-theme.scm 
> b/gnu/packages/matcha-theme.scm
> new file mode 100644
> index 0000000000..1eaf1659a7
> --- /dev/null
> +++ b/gnu/packages/matcha-theme.scm
> @@ -0,0 +1,76 @@
> +;;; GNU Guix --- Functional package management for GNU
> +;;; Copyright © 2019 Alexandros Theodotou <alex@zrythm.org>
> +;;;
> +;;; This file is part of GNU Guix.
> +;;;
> +;;; GNU Guix is free software; you can redistribute it and/or modify 
> it
> +;;; under the terms of the GNU General Public License as published by
> +;;; the Free Software Foundation; either version 3 of the License, or 
> (at
> +;;; your option) any later version.
> +;;;
> +;;; GNU Guix is distributed in the hope that it will be useful, but
> +;;; WITHOUT ANY WARRANTY; without even the implied warranty of
> +;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
> +;;; GNU General Public License for more details.
> +;;;
> +;;; You should have received a copy of the GNU General Public License
> +;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.
> +(define-module (matcha-theme)
> +  #:use-module (guix licenses)
> +  #:use-module (guix packages)
> +  #:use-module (guix download)
> +  #:use-module (guix build-system trivial)
> +  #:use-module (gnu packages base)
> +  #:use-module (gnu packages bash)
> +  #:use-module (gnu packages compression))
> +
> +(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")))
> +          ;; set PATH so we can use tar and the install script can
> find coreutils
> +          (setenv "PATH" (string-append tar "/bin:"
> +                                        (string-append gzip "/bin:")
> +                                        (string-append coreutils 
> "/bin:")))
> +          ;; untar
> +          (invoke "tar" "xf" source)
> +          (chdir "matcha-2019-11-02")
> +          ;; replace shebang
> +          (substitute* "Install" (("/bin/bash") (string-append bash
> "/bin/bash")))
> +          ;; install
> +          (mkdir-p themesdir)
> +          (invoke (string-append bash "/bin/bash") "-c"
> +                  (string-append "./Install -d " themesdir))))))
> +   (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 gpl3)))

  reply	other threads:[~2019-11-07 16:49 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-11-07  6:02 [bug#38095] [PATCH] gnu: Add matcha-theme Alexandros Theodotou
2019-11-07 15:45 ` Alexandros Theodotou [this message]
2019-11-07 15:51   ` Alexandros Theodotou
2019-11-07 19:44     ` Alexandros Theodotou
2019-11-08 23:47       ` Alexandros Theodotou
2019-11-09 10:03 ` Leo Prikler
2019-11-09 21:47   ` bug#38095: " Ludovic Courtès

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=3f860943566a5c5c59f97b17d6ecf150@posteo.net \
    --to=alex@zrythm.org \
    --cc=38095@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).