[2/2] gnu: network-manager-applet: Update to 1.4.2.
Commit Message
* gnu/packages/gnome.scm (network-manager-applet): Update to 1.4.2.
---
gnu/packages/gnome.scm | 12 ++++++++----
1 file changed, 8 insertions(+), 4 deletions(-)
Comments
ng0 <ng0@we.make.ritual.n0.is> skribis:
> * gnu/packages/gnome.scm (network-manager-applet): Update to 1.4.2.
Applied to core-updates, thanks!
Ludo’.
ludo@gnu.org (Ludovic Courtès) writes:
> ng0 <ng0@we.make.ritual.n0.is> skribis:
>
>> * gnu/packages/gnome.scm (network-manager-applet): Update to 1.4.2.
>
> Applied to core-updates, thanks!
>
> Ludo’.
I have a question. The network-manager service doesn't seem to work in
my VM, i.e. network-manager-applet gives the message "NetworkManager is
not running". Is this the case with the current network-manager service?
@@ -4472,7 +4472,7 @@ services.")
(define-public network-manager-applet
(package
(name "network-manager-applet")
- (version "1.2.0")
+ (version "1.4.2")
(source (origin
(method url-fetch)
(uri (string-append "mirror://gnome/sources/" name "/"
@@ -4480,9 +4480,12 @@ services.")
name "-" version ".tar.xz"))
(sha256
(base32
- "0dhvk3dvy6djn6blpkv46dn6yfh28wsh6mpl0v53qxfip97j8kwk"))))
+ "16a43sl9aijmvxbb08hbjqyjnlshj8dckycbgi9nm333fr47n6s3"))))
(build-system glib-or-gtk-build-system)
- (arguments '(#:configure-flags '("--disable-migration")))
+ ;; TODO: WWAN support supposedly requires an update of glibmm which in turn
+ ;; requires an update of the its dependencies (glib and others).
+ (arguments '(#:configure-flags '("--disable-migration"
+ "--without-wwan")))
(native-inputs
`(("intltool" ,intltool)
("gobject-introspection" ,gobject-introspection)
@@ -4496,7 +4499,8 @@ services.")
`(("iso-codes" ,iso-codes)
("libgudev" ,libgudev)
("libnotify" ,libnotify)
- ("libsecret" ,libsecret)))
+ ("libsecret" ,libsecret)
+ ("jansson" ,jansson))) ; For team support
(synopsis "Applet for managing network connections")
(home-page "http://www.gnome.org/projects/NetworkManager/")
(description