summaryrefslogtreecommitdiff
path: root/gnu/packages/cpp.scm
diff options
context:
space:
mode:
authorSughosha <sughosha@disroot.org>2025-10-08 12:51:00 +0530
committerSughosha <sughosha@disroot.org>2025-10-08 13:02:02 +0530
commit17d26dcf8e480f49802c5df9bbce9249b34c2c76 (patch)
treebf5a4888b2e7d275ca5ecd5a89db59489379a372 /gnu/packages/cpp.scm
parentc82d4b82865b9c0c0e710ac73e251be29be4b061 (diff)
gnu: Add swell-colortheme.
* gnu/packages/cpp.scm (swell-colortheme): New variable. Change-Id: I194cb93d27966588b730c73416f79556aa03c5aa
Diffstat (limited to 'gnu/packages/cpp.scm')
-rw-r--r--gnu/packages/cpp.scm24
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm
index d95d1d7e062..653ac7df93c 100644
--- a/gnu/packages/cpp.scm
+++ b/gnu/packages/cpp.scm
@@ -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")