all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#38151] [PATCH] gnu: Move numix-theme to gnome-xyz.scm.
@ 2019-11-09 13:00 goodoldpaul
  2019-11-10 19:59 ` bug#38151: " Marius Bakke
  0 siblings, 1 reply; 2+ messages in thread
From: goodoldpaul @ 2019-11-09 13:00 UTC (permalink / raw)
  To: 38151

[-- Attachment #1: Type: text/plain, Size: 120 bytes --]

Since a new file for Gnome themes and extensions has been made, I moved 
numix-theme there from gnome.scm.

Bye

Giacomo

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-gnu-Move-numix-theme-to-gnome-xyz.scm.patch --]
[-- Type: text/x-diff; name=0001-gnu-Move-numix-theme-to-gnome-xyz.scm.patch, Size: 4387 bytes --]

From dc7c89f22a74ecffc5d0600d77e7a6d2cbe1b7ee Mon Sep 17 00:00:00 2001
From: Giacomo Leidi <goodoldpaul@autistici.org>
Date: Sat, 9 Nov 2019 13:48:59 +0100
Subject: [PATCH] gnu: Move numix-theme to gnome-xyz.scm.

* gnu/packages/gnome.scm (numix-theme): Move from here ...
* gnu/packages/gnome-xyz.scm (numix-theme): ... to here.
---
 gnu/packages/gnome-xyz.scm | 39 +++++++++++++++++++++++++++++++++++++-
 gnu/packages/gnome.scm     | 32 -------------------------------
 2 files changed, 38 insertions(+), 33 deletions(-)

diff --git a/gnu/packages/gnome-xyz.scm b/gnu/packages/gnome-xyz.scm
index 8c45b552e8..df9e8d9569 100644
--- a/gnu/packages/gnome-xyz.scm
+++ b/gnu/packages/gnome-xyz.scm
@@ -1,5 +1,6 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2019 Leo Prikler <leo.prikler@student.tugraz.at>
+;;; Copyright © 2019 Giacomo Leidi <goodoldpaul@autistici.org>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -24,7 +25,11 @@
   #:use-module ((guix licenses) #:prefix license:)
 
   #:use-module (gnu packages glib)
-  #:use-module (gnu packages pkg-config))
+  #:use-module (gnu packages gnome)
+  #:use-module (gnu packages gtk)
+  #:use-module (gnu packages pkg-config)
+  #:use-module (gnu packages ruby)
+  #:use-module (gnu packages xml))
 
 (define-public delft-icon-theme
   (package
@@ -126,3 +131,35 @@ faster window switching.")
 It uses ES6 syntax and claims to be more actively maintained than others.")
     (home-page "https://extensions.gnome.org/extension/2182/noannoyance/")
     (license license:gpl2)))
+
+(define-public numix-theme
+  (package
+    (name "numix-theme")
+    (version "2.6.7")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/numixproject/numix-gtk-theme.git")
+                    (commit version)))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "12mw0kr0kkvg395qlbsvkvaqccr90cmxw5rrsl236zh43kj8grb7"))))
+    (build-system gnu-build-system)
+    (arguments
+     '(#:make-flags (list (string-append "DESTDIR=" (assoc-ref %outputs "out")))
+       #:phases
+       (modify-phases %standard-phases
+         (delete 'configure)
+         (delete 'check))))
+    (native-inputs
+     `(("glib:bin" ,glib "bin")             ; for glib-compile-schemas
+       ("gnome-shell" ,gnome-shell)
+       ("gtk+" ,gtk+)
+       ("xmllint" ,libxml2)
+       ("ruby-sass" ,ruby-sass)))
+    (synopsis "Flat theme with light and dark elements")
+    (description "Numix is a modern flat theme with a combination of light and
+dark elements.  It supports GNOME, Unity, Xfce, and Openbox.")
+    (home-page "https://numixproject.github.io")
+    (license license:gpl3+)))
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index bbb986f30e..e5a5fb6d1f 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -7111,38 +7111,6 @@ functionality and behavior.")
     (home-page "https://extensions.gnome.org/")
     (license license:gpl3+)))
 
-(define-public numix-theme
-  (package
-    (name "numix-theme")
-    (version "2.6.7")
-    (source (origin
-              (method git-fetch)
-              (uri (git-reference
-                    (url "https://github.com/numixproject/numix-gtk-theme.git")
-                    (commit version)))
-              (file-name (git-file-name name version))
-              (sha256
-               (base32
-                "12mw0kr0kkvg395qlbsvkvaqccr90cmxw5rrsl236zh43kj8grb7"))))
-    (build-system gnu-build-system)
-    (arguments
-     '(#:make-flags (list (string-append "DESTDIR=" (assoc-ref %outputs "out")))
-       #:phases
-       (modify-phases %standard-phases
-         (delete 'configure)
-         (delete 'check))))
-    (native-inputs
-     `(("glib:bin" ,glib "bin")             ; for glib-compile-schemas
-       ("gnome-shell" ,gnome-shell)
-       ("gtk+" ,gtk+)
-       ("xmllint" ,libxml2)
-       ("ruby-sass" ,ruby-sass)))
-    (synopsis "Flat theme with light and dark elements")
-    (description "Numix is a modern flat theme with a combination of light and
-dark elements.  It supports GNOME, Unity, Xfce, and Openbox.")
-    (home-page "https://numixproject.github.io")
-    (license license:gpl3+)))
-
 (define-public arc-theme
   (package
     (name "arc-theme")
-- 
2.24.0


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* bug#38151: [PATCH] gnu: Move numix-theme to gnome-xyz.scm.
  2019-11-09 13:00 [bug#38151] [PATCH] gnu: Move numix-theme to gnome-xyz.scm goodoldpaul
@ 2019-11-10 19:59 ` Marius Bakke
  0 siblings, 0 replies; 2+ messages in thread
From: Marius Bakke @ 2019-11-10 19:59 UTC (permalink / raw)
  To: goodoldpaul, 38151-done

[-- Attachment #1: Type: text/plain, Size: 170 bytes --]

goodoldpaul@autistici.org writes:

> Since a new file for Gnome themes and extensions has been made, I moved 
> numix-theme there from gnome.scm.

Applied, thanks!

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2019-11-10 20:00 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-11-09 13:00 [bug#38151] [PATCH] gnu: Move numix-theme to gnome-xyz.scm goodoldpaul
2019-11-10 19:59 ` bug#38151: " Marius Bakke

Code repositories for project(s) associated with this external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.