diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-04-20 15:51:26 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-04-21 00:44:03 -0400 |
commit | adbd08e010163972dad4f25fdeb27f5024313b81 (patch) | |
tree | 4cb6367739bfcf3180840fdc0fc932d3c25f43ac /gnu | |
parent | 56f382141d5c6c68d5e5a13cad67a1bf50eb73d2 (diff) | |
download | guix-adbd08e010163972dad4f25fdeb27f5024313b81.tar.gz guix-adbd08e010163972dad4f25fdeb27f5024313b81.zip |
gnu: libdmapsharing: Remove patch-docbook-xml phase.
* gnu/packages/gnome.scm (libdmapsharing) [arguments]: Remove patch-docbook-xml
phase. Use gexps.
[inputs]: Remove labels.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/gnome.scm | 32 |
1 files changed, 10 insertions, 22 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index e9a78ce90c..ccddb50c2a 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -550,23 +550,11 @@ in JavaScript.") (build-system glib-or-gtk-build-system) (outputs '("out" "doc")) (arguments - `(#:tests? #f ; Tests require networking. - #:configure-flags - (list - "--disable-static" - (string-append "--with-html-dir=" - (assoc-ref %outputs "doc") - "/share/gtk-doc/html")) - #:phases - (modify-phases %standard-phases - (add-after 'unpack 'patch-docbook-xml - (lambda* (#:key inputs #:allow-other-keys) - (with-directory-excursion "doc" - (substitute* "libdmapsharing-4.0-docs.xml" - (("http://www.oasis-open.org/docbook/xml/4.3/") - (string-append (assoc-ref inputs "docbook-xml") - "/xml/dtd/docbook/")))) - #t))))) + (list #:tests? #f ; Tests require networking. + #:configure-flags + #~(list "--disable-static" + (string-append "--with-html-dir=" #$output:doc + "/share/gtk-doc/html")))) (native-inputs (list check docbook-xml-4.3 @@ -575,11 +563,11 @@ in JavaScript.") pkg-config vala)) (inputs - `(("avahi" ,avahi) - ("librsvg" ,librsvg) - ("gee" ,libgee) - ("gst-plugins-base" ,gst-plugins-base) - ("gtk+" ,gtk+))) + (list avahi + librsvg + libgee + gst-plugins-base + gtk+)) (propagated-inputs (list glib glib-networking gstreamer libsoup-minimal-2)) (synopsis "Media management library") |