gnu: network-manager-applet: Build libnm-gtk.

Fixes network-manager-openvpn <https://issues.guix.gnu.org/issue/37759>.

* gnu/packages/gnome.scm (network-manager-applet)[arguments]:
Set libnm_gtk=true in #:configure-flags.
This commit is contained in:
Tobias Geerinckx-Rice 2019-10-15 15:51:50 +02:00
parent 559e06b61c
commit be1c4b079e
No known key found for this signature in database
GPG key ID: D889B0F018C5493C

View file

@ -5487,6 +5487,7 @@ (define-public network-manager
(define-public network-manager-openvpn (define-public network-manager-openvpn
(package (package
(name "network-manager-openvpn") (name "network-manager-openvpn")
;; Updating? Check whether network-manager-applet still needs libnm_gtk.
(version "1.8.4") (version "1.8.4")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
@ -5671,7 +5672,10 @@ (define-public network-manager-applet
"1gzvz4wfqfsfclqg56y954al8x6fmz71cnxlx1i4nqr7a25bp2qi")))) "1gzvz4wfqfsfclqg56y954al8x6fmz71cnxlx1i4nqr7a25bp2qi"))))
(build-system meson-build-system) (build-system meson-build-system)
(arguments (arguments
'(#:glib-or-gtk? #t)) '(#:configure-flags
;; Nobody should be using this but network-manager-openvpn 1.8.10 does.
(list "-Dlibnm_gtk=true")
#:glib-or-gtk? #t))
(native-inputs (native-inputs
`(("intltool" ,intltool) `(("intltool" ,intltool)
("glib:bin" ,glib "bin") ; for glib-compile-resources, etc. ("glib:bin" ,glib "bin") ; for glib-compile-resources, etc.