mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-23 11:09:41 -05:00
gnu: libnma: Adjust indentation.
* gnu/packages/gnome.scm (libnma): Adjust indentation.
This commit is contained in:
parent
c25ca6b79e
commit
b1da33d965
1 changed files with 38 additions and 38 deletions
|
@ -808,44 +808,44 @@ (define-public rygel
|
||||||
|
|
||||||
(define-public libnma
|
(define-public libnma
|
||||||
(package
|
(package
|
||||||
(name "libnma")
|
(name "libnma")
|
||||||
(version "1.8.28")
|
(version "1.8.28")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "mirror://gnome/sources/" name "/"
|
(uri (string-append "mirror://gnome/sources/" name "/"
|
||||||
(version-major+minor version) "/"
|
(version-major+minor version) "/"
|
||||||
name "-" version ".tar.xz"))
|
name "-" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"09mp6k0hfam1vyyv9kcd8j4gb2r58i05ipx2nswb58ris599bxja"))))
|
"09mp6k0hfam1vyyv9kcd8j4gb2r58i05ipx2nswb58ris599bxja"))))
|
||||||
(build-system meson-build-system)
|
(build-system meson-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
`(#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'patch-docbook-xml
|
(add-after 'unpack 'patch-docbook-xml
|
||||||
(lambda* (#:key inputs #:allow-other-keys)
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
(let ((xmldoc (string-append (assoc-ref inputs "docbook-xml")
|
(let ((xmldoc (string-append (assoc-ref inputs "docbook-xml")
|
||||||
"/xml/dtd/docbook")))
|
"/xml/dtd/docbook")))
|
||||||
(substitute* "libnma-docs.xml"
|
(substitute* "libnma-docs.xml"
|
||||||
(("http://.*/docbookx\\.dtd")
|
(("http://.*/docbookx\\.dtd")
|
||||||
(string-append xmldoc "/docbookx.dtd")))
|
(string-append xmldoc "/docbookx.dtd")))
|
||||||
#t))))))
|
#t))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("docbook-xml" ,docbook-xml-4.3)
|
`(("docbook-xml" ,docbook-xml-4.3)
|
||||||
("gettext" ,gettext-minimal)
|
("gettext" ,gettext-minimal)
|
||||||
("glib:bin" ,glib "bin")
|
("glib:bin" ,glib "bin")
|
||||||
("gtk-doc" ,gtk-doc)
|
("gtk-doc" ,gtk-doc)
|
||||||
("gobject-introspection" ,gobject-introspection)
|
("gobject-introspection" ,gobject-introspection)
|
||||||
("pkg-config" ,pkg-config)
|
("pkg-config" ,pkg-config)
|
||||||
("vala" ,vala)))
|
("vala" ,vala)))
|
||||||
(inputs
|
(inputs
|
||||||
`(("gcr" ,gcr)
|
`(("gcr" ,gcr)
|
||||||
("gtk+" ,gtk+)
|
("gtk+" ,gtk+)
|
||||||
("iso-codes" ,iso-codes)
|
("iso-codes" ,iso-codes)
|
||||||
("mobile-broadband-provider-info" ,mobile-broadband-provider-info)
|
("mobile-broadband-provider-info" ,mobile-broadband-provider-info)
|
||||||
("network-manager" ,network-manager)))
|
("network-manager" ,network-manager)))
|
||||||
(synopsis "Network Manager's applet library")
|
(synopsis "Network Manager's applet library")
|
||||||
(description "Libnma is an applet library for Network Manager. It was
|
(description "Libnma is an applet library for Network Manager. It was
|
||||||
initially part of network-manager-applet and has now become a separate
|
initially part of network-manager-applet and has now become a separate
|
||||||
project.")
|
project.")
|
||||||
(home-page "https://gitlab.gnome.org/GNOME/libnma")
|
(home-page "https://gitlab.gnome.org/GNOME/libnma")
|
||||||
|
|
Loading…
Reference in a new issue