gnu: Add swell-colortheme.

* gnu/packages/cpp.scm (swell-colortheme): New variable.

Change-Id: I194cb93d27966588b730c73416f79556aa03c5aa
This commit is contained in:
Sughosha 2025-10-08 12:51:00 +05:30
parent c82d4b8286
commit 17d26dcf8e
No known key found for this signature in database
GPG key ID: CDBC0BD95943A706

View file

@ -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")