diff options
author | Kei Kebreau <kkebreau@posteo.net> | 2020-04-20 02:09:47 -0400 |
---|---|---|
committer | Kei Kebreau <kkebreau@posteo.net> | 2020-05-12 10:49:50 -0400 |
commit | 275d4caa265adbce30894e5e9dc2b8dedc47d602 (patch) | |
tree | f1d379207abde233d15fd7ee414b159d24d348c2 | |
parent | 77160c177ab96398ff9a86597efdd3c691a1ab31 (diff) | |
download | guix-275d4caa265adbce30894e5e9dc2b8dedc47d602.tar.gz |
gnu: gnome-control-center: Update to 3.36.1.
* gnu/packages/gnome.scm (gnome-control-center): Update to 3.36.1. [arguments]: Adjust 'patch-paths' phase accordingly. [inputs]: Add libnma.
-rw-r--r-- | gnu/packages/gnome.scm | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index f85edf047e..fa58f73864 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -7015,7 +7015,7 @@ devices using the GNOME desktop.") (define-public gnome-control-center (package (name "gnome-control-center") - (version "3.34.2") + (version "3.36.1") (source (origin (method url-fetch) (uri (string-append "mirror://gnome/sources/" name "/" @@ -7023,7 +7023,7 @@ devices using the GNOME desktop.") name "-" version ".tar.xz")) (sha256 (base32 - "054igagvmyzpaa5nwzz98gv7bk7l5dwp6g813707132si3szlpx8")))) + "1466swjyw5vjym001qda94x6sisd4xhpyb6vq91grhkyzwf2vqzk")))) (build-system meson-build-system) (arguments '(#:glib-or-gtk? #t @@ -7051,8 +7051,8 @@ devices using the GNOME desktop.") (("\"gkbd-keyboard-display") (string-append "\"" libgnomekbd "/bin/gkbd-keyboard-display"))) - (substitute* '("panels/network/net-device-wifi.c" - "panels/network/net-device.c" + (substitute* '("panels/network/net-device-mobile.c" + "panels/network/net-device-bluetooth.c" "panels/network/connection-editor/net-connection-editor.c") (("\"nm-connection-editor") (string-append "\"" nm-applet @@ -7060,7 +7060,7 @@ devices using the GNOME desktop.") (substitute* '("panels/user-accounts/run-passwd.c") (("/usr/bin/passwd") "/run/setuid-programs/passwd")) - (substitute* "panels/info/cc-info-overview-panel.c" + (substitute* "panels/info-overview/cc-info-overview-panel.c" (("DATADIR \"/gnome/gnome-version.xml\"") (string-append "\"" gnome-desktop "/share/gnome/gnome-version.xml\""))) @@ -7101,6 +7101,7 @@ devices using the GNOME desktop.") ("libgnomekbd" ,libgnomekbd) ("libgudev" ,libgudev) ("libgtop" ,libgtop) + ("libnma" ,libnma) ("libpwquality" ,libpwquality) ("libsecret" ,libsecret) ("libsoup" ,libsoup) |