mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add gtksourceviewmm.
* gnu/packages/gtk.scm (gtksourceviewmm): New public variable.
This commit is contained in:
parent
8e933cb36a
commit
e07a44891c
1 changed files with 32 additions and 0 deletions
|
@ -1122,6 +1122,38 @@ (define-public gtkmm-2
|
|||
("gtk+" ,gtk+-2)
|
||||
("glibmm" ,glibmm)))))
|
||||
|
||||
(define-public gtksourceviewmm
|
||||
(package
|
||||
(name "gtksourceviewmm")
|
||||
(version "3.18.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://gnome/sources/" name "/"
|
||||
(version-major+minor version) "/"
|
||||
name "-" version ".tar.xz"))
|
||||
(sha256
|
||||
(base32 "0fgvmhm4h4qmxig87qvangs6ijw53mi40siz7pixlxbrsgiil22i"))))
|
||||
(build-system gnu-build-system)
|
||||
(native-inputs
|
||||
`(("pkg-config" ,pkg-config)))
|
||||
(propagated-inputs
|
||||
;; In 'Requires' of gtksourceviewmm-3.0.pc.
|
||||
`(("glibmm" ,glibmm)
|
||||
("gtkmm" ,gtkmm)
|
||||
("gtksourceview" ,gtksourceview)))
|
||||
(synopsis "C++ interface to the GTK+ 'GtkTextView' widget")
|
||||
(description
|
||||
"gtksourceviewmm is a portable C++ library that extends the standard GTK+
|
||||
framework for multiline text editing with support for configurable syntax
|
||||
highlighting, unlimited undo/redo, search and replace, a completion framework,
|
||||
printing and other features typical of a source code editor.")
|
||||
(license license:lgpl2.1+)
|
||||
(home-page "https://developer.gnome.org/gtksourceview/")))
|
||||
|
||||
;;;
|
||||
;;; Python bindings.
|
||||
;;;
|
||||
|
||||
(define-public python-pycairo
|
||||
(package
|
||||
(name "python-pycairo")
|
||||
|
|
Loading…
Reference in a new issue