mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add breeze.
* gnu/packages/kde-frameworks.scm (breeze): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
41b35576e7
commit
918a8f49a0
1 changed files with 28 additions and 0 deletions
|
@ -27,6 +27,7 @@
|
||||||
(define-module (gnu packages kde-frameworks)
|
(define-module (gnu packages kde-frameworks)
|
||||||
#:use-module (guix build-system cmake)
|
#:use-module (guix build-system cmake)
|
||||||
#:use-module (guix build-system qt)
|
#:use-module (guix build-system qt)
|
||||||
|
#:use-module (guix build-system trivial)
|
||||||
#:use-module (guix download)
|
#:use-module (guix download)
|
||||||
#:use-module ((guix licenses) #:prefix license:)
|
#:use-module ((guix licenses) #:prefix license:)
|
||||||
#:use-module (guix packages)
|
#:use-module (guix packages)
|
||||||
|
@ -356,6 +357,33 @@ (define-public breeze-assets
|
||||||
with the Breeze visual style.")
|
with the Breeze visual style.")
|
||||||
(license license:gpl2+)))
|
(license license:gpl2+)))
|
||||||
|
|
||||||
|
(define-public breeze
|
||||||
|
(package
|
||||||
|
(name "breeze")
|
||||||
|
(version (package-version breeze-assets))
|
||||||
|
(source #f)
|
||||||
|
(build-system trivial-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:modules ((guix build union))
|
||||||
|
#:builder
|
||||||
|
(begin
|
||||||
|
(use-modules (ice-9 match)
|
||||||
|
(guix build union))
|
||||||
|
(match %build-inputs
|
||||||
|
(((names . directories) ...)
|
||||||
|
(union-build (assoc-ref %outputs "out")
|
||||||
|
directories)
|
||||||
|
#t)))))
|
||||||
|
(inputs
|
||||||
|
`(("breeze-icons" ,breeze-icons)
|
||||||
|
("breeze-assets" ,breeze-assets)))
|
||||||
|
(home-page "https://github.com/KDE/breeze-icons")
|
||||||
|
(synopsis "Full KDE Breeze theme")
|
||||||
|
(description
|
||||||
|
"This package contains the full Breeze visual style for KDE:
|
||||||
|
assets and icons.")
|
||||||
|
(license (list license:gpl2 license:gpl3+))))
|
||||||
|
|
||||||
(define-public kapidox
|
(define-public kapidox
|
||||||
(package
|
(package
|
||||||
(name "kapidox")
|
(name "kapidox")
|
||||||
|
|
Loading…
Reference in a new issue