mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05: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:
parent
559e06b61c
commit
be1c4b079e
1 changed files with 5 additions and 1 deletions
|
@ -5487,6 +5487,7 @@ (define-public network-manager
|
|||
(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 @@ (define-public network-manager-applet
|
|||
"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.
|
||||
|
|
Loading…
Reference in a new issue