[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
176/184: gnu: Move numix-theme to gnome-xyz.scm.
From: |
guix-commits |
Subject: |
176/184: gnu: Move numix-theme to gnome-xyz.scm. |
Date: |
Wed, 27 Nov 2019 14:37:21 -0500 (EST) |
kkebreau pushed a commit to branch wip-gnome-updates
in repository guix.
commit ac8b4228bb8d4a07786c739a33ffbac4d7a956e9
Author: Giacomo Leidi <address@hidden>
Date: Sat Nov 9 13:48:59 2019 +0100
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.
Signed-off-by: Marius Bakke <address@hidden>
---
gnu/packages/gnome-xyz.scm | 39 +++++++++++++++++++++++++++++++++++++--
gnu/packages/gnome.scm | 32 --------------------------------
2 files changed, 37 insertions(+), 34 deletions(-)
diff --git a/gnu/packages/gnome-xyz.scm b/gnu/packages/gnome-xyz.scm
index 27171d3..760131b 100644
--- a/gnu/packages/gnome-xyz.scm
+++ b/gnu/packages/gnome-xyz.scm
@@ -1,6 +1,7 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2019 Leo Prikler <address@hidden>
;;; Copyright © 2019 Alexandros Theodotou <address@hidden>
+;;; Copyright © 2019 Giacomo Leidi <address@hidden>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -23,12 +24,14 @@
#:use-module (guix git-download)
#:use-module (guix packages)
#:use-module ((guix licenses) #:prefix license:)
-
#:use-module (gnu packages base)
#:use-module (gnu packages bash)
#:use-module (gnu packages glib)
+ #:use-module (gnu packages gnome)
#:use-module (gnu packages gtk)
- #:use-module (gnu packages pkg-config))
+ #:use-module (gnu packages pkg-config)
+ #:use-module (gnu packages ruby)
+ #:use-module (gnu packages xml))
(define-public matcha-theme
(package
@@ -176,3 +179,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 88dd032..28c775e 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -7255,38 +7255,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")
- 142/184: gnu: make-bootstrap: Memoize GCC variant., (continued)
- 142/184: gnu: make-bootstrap: Memoize GCC variant., guix-commits, 2019/11/27
- 146/184: gnu: Add artyfx, guix-commits, 2019/11/27
- 140/184: tests: Update references to the now-deprecated 'guile-json' variable., guix-commits, 2019/11/27
- 139/184: services: hpcguix-web: Delete lock files during activation., guix-commits, 2019/11/27
- 152/184: gnu: gegl: Add source URIs., guix-commits, 2019/11/27
- 162/184: gnu: monero: Update to 0.15.0.0., guix-commits, 2019/11/27
- 154/184: gnu: gimp: Update to 2.10.14., guix-commits, 2019/11/27
- 157/184: gnu: faad2: Update to 2.8.6., guix-commits, 2019/11/27
- 161/184: gnu: Remove monero-miniupnpc., guix-commits, 2019/11/27
- 177/184: gnu: qemu: Add upstream patch for failing test., guix-commits, 2019/11/27
- 176/184: gnu: Move numix-theme to gnome-xyz.scm.,
guix-commits <=
- 179/184: gnu: Add boost-with-python3., guix-commits, 2019/11/27
- 175/184: gnu: limnoria: Update to 2019.11.09 [security fix]., guix-commits, 2019/11/27
- 182/184: Merge branch 'master' into wip-gnome-updates, guix-commits, 2019/11/27
- 121/184: ui: Produce hyperlinks for the 'location' field of search results., guix-commits, 2019/11/27
- 172/184: gnu: Add 'file-name' where appropriate., guix-commits, 2019/11/27
- 141/184: services: 'fold-services' memoizes service values., guix-commits, 2019/11/27
- 145/184: gnu: Add matcha-theme., guix-commits, 2019/11/27
- 159/184: gnu: cgal: Use HTTPS home page., guix-commits, 2019/11/27
- 164/184: gnu: LibreSSL: Make search paths single-entry., guix-commits, 2019/11/27