[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/09: gnu: Add gtksourceviewmm.
From: |
Marius Bakke |
Subject: |
05/09: gnu: Add gtksourceviewmm. |
Date: |
Wed, 7 Mar 2018 08:54:28 -0500 (EST) |
mbakke pushed a commit to branch master
in repository guix.
commit e07a44891cd906aa071e88e355b9cc8f93b047f7
Author: Marius Bakke <address@hidden>
Date: Wed Mar 7 13:27:09 2018 +0100
gnu: Add gtksourceviewmm.
* gnu/packages/gtk.scm (gtksourceviewmm): New public variable.
---
gnu/packages/gtk.scm | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm
index a1d7e54..a96cb96 100644
--- a/gnu/packages/gtk.scm
+++ b/gnu/packages/gtk.scm
@@ -1122,6 +1122,38 @@ extensive documentation, including API reference and a
tutorial.")
("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")
- branch master updated (06c15ee -> 9dda6da), Marius Bakke, 2018/03/07
- 03/09: gnu: gtkmm: Use the for-test xorg variant for tests., Marius Bakke, 2018/03/07
- 06/09: gnu: imagemagick: Update to 6.9.9-37., Marius Bakke, 2018/03/07
- 07/09: gnu: mkfontscale: Update to 1.1.3., Marius Bakke, 2018/03/07
- 02/09: gnu: gtkmm: Update to 3.22.2., Marius Bakke, 2018/03/07
- 05/09: gnu: Add gtksourceviewmm.,
Marius Bakke <=
- 04/09: gnu: Use HTTPS on gtkmm.org home pages., Marius Bakke, 2018/03/07
- 08/09: gnu: twm: Update to 1.0.10., Marius Bakke, 2018/03/07
- 09/09: gnu: xdriinfo: Update to 1.0.6., Marius Bakke, 2018/03/07
- 01/09: gnu: glibmm: Update to 2.54.1., Marius Bakke, 2018/03/07