~ruther/guix-local

17d26dcf8e480f49802c5df9bbce9249b34c2c76 — Sughosha 4 months ago c82d4b8
gnu: Add swell-colortheme.

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

Change-Id: I194cb93d27966588b730c73416f79556aa03c5aa
1 files changed, 24 insertions(+), 0 deletions(-)

M gnu/packages/cpp.scm
M gnu/packages/cpp.scm => gnu/packages/cpp.scm +24 -0
@@ 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")