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 <mbakke@fastmail.com>master
parent
2ffae2689a
commit
72332f3c8a
|
@ -1,6 +1,7 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2019 Leo Prikler <leo.prikler@student.tugraz.at>
|
;;; Copyright © 2019 Leo Prikler <leo.prikler@student.tugraz.at>
|
||||||
;;; Copyright © 2019 Alexandros Theodotou <alex@zrythm.org>
|
;;; Copyright © 2019 Alexandros Theodotou <alex@zrythm.org>
|
||||||
|
;;; Copyright © 2019 Giacomo Leidi <goodoldpaul@autistici.org>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -23,12 +24,14 @@
|
||||||
#:use-module (guix git-download)
|
#:use-module (guix git-download)
|
||||||
#:use-module (guix packages)
|
#:use-module (guix packages)
|
||||||
#:use-module ((guix licenses) #:prefix license:)
|
#:use-module ((guix licenses) #:prefix license:)
|
||||||
|
|
||||||
#:use-module (gnu packages base)
|
#:use-module (gnu packages base)
|
||||||
#:use-module (gnu packages bash)
|
#:use-module (gnu packages bash)
|
||||||
#:use-module (gnu packages glib)
|
#:use-module (gnu packages glib)
|
||||||
|
#:use-module (gnu packages gnome)
|
||||||
#:use-module (gnu packages gtk)
|
#: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
|
(define-public matcha-theme
|
||||||
(package
|
(package
|
||||||
|
@ -176,3 +179,35 @@ faster window switching.")
|
||||||
It uses ES6 syntax and claims to be more actively maintained than others.")
|
It uses ES6 syntax and claims to be more actively maintained than others.")
|
||||||
(home-page "https://extensions.gnome.org/extension/2182/noannoyance/")
|
(home-page "https://extensions.gnome.org/extension/2182/noannoyance/")
|
||||||
(license license:gpl2)))
|
(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+)))
|
||||||
|
|
|
@ -7111,38 +7111,6 @@ functionality and behavior.")
|
||||||
(home-page "https://extensions.gnome.org/")
|
(home-page "https://extensions.gnome.org/")
|
||||||
(license license:gpl3+)))
|
(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
|
(define-public arc-theme
|
||||||
(package
|
(package
|
||||||
(name "arc-theme")
|
(name "arc-theme")
|
||||||
|
|
Reference in New Issue