guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#42177] [PATCH 2/3] gnu: Add template-glib.


From: Leo Prikler
Subject: [bug#42177] [PATCH 2/3] gnu: Add template-glib.
Date: Fri, 3 Jul 2020 12:37:13 +0200

* gnu/packages/gnome.scm (template-glib): New variable.
---
 gnu/packages/gnome.scm | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 520129618c..c0517a5421 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -10511,3 +10511,32 @@ to generate stacktraces which are then interpreted by 
the userspace program
 ``sysprof''.")
     (license (list license:gpl2+
                    license:gpl3+))))
+
+(define-public template-glib
+  (package
+    (name "template-glib")
+    (version "3.34.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "mirror://gnome/sources/" name "/"
+                                  (version-major+minor version) "/"
+                                  name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "1z9xkin5fyfh071ma9y045jcw83hgx33dfbjraw6cxk0qdmfysr1"))))
+    (build-system meson-build-system)
+    (inputs
+     `(("bison" ,bison)
+       ("flex" ,flex)
+       ("glib" ,glib)
+       ("gobject-introspection" ,gobject-introspection)))
+    (native-inputs
+     `(("pkg-config" ,pkg-config)
+       ("glib:bin" ,glib "bin")
+       ("vala" ,vala)))
+    (home-page "https://gitlab.gnome.org/GNOME/template-glib";)
+    (synopsis "Library for template expansion")
+    (description "Template-GLib is a library to help you generate text based
+on a template and user defined state.  Template-GLib does not use a language
+runtime, so it is safe to use from any GObject-Introspectable language.")
+    (license license:lgpl2.1+)))
-- 
2.27.0






reply via email to

[Prev in Thread] Current Thread [Next in Thread]