mirror of
https://codeberg.org/guix/guix.git
synced 2026-01-25 12:05:19 -06:00
gnu: Add swell-colortheme.
* gnu/packages/cpp.scm (swell-colortheme): New variable. Change-Id: I194cb93d27966588b730c73416f79556aa03c5aa
This commit is contained in:
parent
c82d4b8286
commit
17d26dcf8e
1 changed files with 24 additions and 0 deletions
|
|
@ -3834,6 +3834,30 @@ way as basic integer types.")
|
|||
common controls and win32-style extensions.")
|
||||
(license license:zlib))))
|
||||
|
||||
(define-public swell-colortheme
|
||||
(package
|
||||
(inherit swell)
|
||||
(name "swell-colortheme")
|
||||
(arguments
|
||||
(substitute-keyword-arguments (package-arguments swell)
|
||||
((#:make-flags flags)
|
||||
#~(append #$flags '("libSwell.colortheme")))
|
||||
((#:phases phases)
|
||||
#~(modify-phases #$phases
|
||||
(replace 'install
|
||||
(lambda _
|
||||
(install-file "libSwell.colortheme"
|
||||
(string-append #$output
|
||||
"/share/SWELL"))))))))
|
||||
(native-inputs
|
||||
(list pkg-config
|
||||
gtk+)) ;only for compilation
|
||||
(inputs '())
|
||||
(synopsis "SWELL colortheme sample")
|
||||
(description
|
||||
"This package provides the default @code{libSwell.colortheme} file for
|
||||
programs that use @code{swell}.")))
|
||||
|
||||
(define-public juce
|
||||
(package
|
||||
(name "juce")
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue