[WIP master] gnu: Add gobject-introspection+doctool.

  • Open
  • quality assurance status badge
Details
One participant
  • Danny Milosavljevic
Owner
unassigned
Submitted by
Danny Milosavljevic
Severity
normal

Debbugs page

Danny Milosavljevic wrote 4 years ago
(address . guix-patches@gnu.org)(name . Danny Milosavljevic)(address . dannym@scratchpost.org)
20200924134529.14435-1-dannym@scratchpost.org
* gnu/packages/glib.scm (gobject-introspection+doctool): New variable.
---
gnu/packages/glib.scm | 14 ++++++++++++++
1 file changed, 14 insertions(+)

Toggle diff (32 lines)
diff --git a/gnu/packages/glib.scm b/gnu/packages/glib.scm
index ca037d3b24..0aa8c837cd 100644
--- a/gnu/packages/glib.scm
+++ b/gnu/packages/glib.scm
@@ -75,6 +75,7 @@
#:export (dbus
glib
gobject-introspection
+ gobject-introspection+doctool
dbus-glib
intltool
itstool
@@ -466,6 +467,19 @@ bindings to call into the C library.")
; Some bits are distributed under the LGPL2+, others under the GPL2+
(license license:gpl2+)))
+(define gobject-introspection+doctool
+ (package
+ (inherit gobject-introspection)
+ (name "gobject-introspection+doctool")
+ (native-inputs
+ `(("python-mako" ,python-mako)
+ ("python-markdown" ,python-markdown)
+ ,@(package-native-inputs gobject-introspection)))
+ (arguments
+ (substitute-keyword-arguments (package-arguments gobject-introspection)
+ ((#:configure-flags flags ''())
+ `(cons* "-Ddoctool=true" ,flags))))))
+
(define intltool
(package
(name "intltool")
?
Your comment

Commenting via the web interface is currently disabled.

To comment on this conversation send an email to 43590@debbugs.gnu.org

To respond to this issue using the mumi CLI, first switch to it
mumi current 43590
Then, you may apply the latest patchset in this issue (with sign off)
mumi am -- -s
Or, compose a reply to this issue
mumi compose
Or, send patches to this issue
mumi send-email *.patch
You may also tag this issue. See list of standard tags. For example, to set the confirmed and easy tags
mumi command -t +confirmed -t +easy
Or, remove the moreinfo tag and set the help tag
mumi command -t -moreinfo -t +help