3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

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 @@ services.")
(define-public network-manager-openvpn
(package
(name "network-manager-openvpn")
;; Updating? Check whether network-manager-applet still needs libnm_gtk.
(version "1.8.4")
(source (origin
(method url-fetch)
@ -5671,7 +5672,10 @@ Cisco's AnyConnect SSL VPN.")
"1gzvz4wfqfsfclqg56y954al8x6fmz71cnxlx1i4nqr7a25bp2qi"))))
(build-system meson-build-system)
(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
`(("intltool" ,intltool)
("glib:bin" ,glib "bin") ; for glib-compile-resources, etc.