diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-01-25 22:07:13 -0500 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-01-25 22:07:13 -0500 |
commit | 1a5302435ff0d2822b823f5a6fe01faa7a85c629 (patch) | |
tree | ac7810c88b560532f22d2bab2e59609cd7305c21 /gnu/packages/connman.scm | |
parent | 3ff2ac4980dacf10087e4b42bd9fbc490591900c (diff) | |
parent | 070b8a893febd6e7d8b2b7c8c4dcebacf7845aa9 (diff) | |
download | guix-1a5302435ff0d2822b823f5a6fe01faa7a85c629.tar.gz |
Merge branch 'master' into staging.
With "conflicts" solved (all in favor of master except git) in: gnu/local.mk gnu/packages/databases.scm gnu/packages/glib.scm gnu/packages/gnome.scm gnu/packages/gnupg.scm gnu/packages/gnuzilla.scm gnu/packages/graphics.scm gnu/packages/gstreamer.scm gnu/packages/gtk.scm gnu/packages/linux.scm gnu/packages/machine-learning.scm gnu/packages/networking.scm gnu/packages/polkit.scm gnu/packages/pulseaudio.scm gnu/packages/rpc.scm gnu/packages/rust.scm gnu/packages/version-control.scm gnu/packages/w3m.scm
Diffstat (limited to 'gnu/packages/connman.scm')
-rw-r--r-- | gnu/packages/connman.scm | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/gnu/packages/connman.scm b/gnu/packages/connman.scm index 7268af4c8b..f2ebfc95eb 100644 --- a/gnu/packages/connman.scm +++ b/gnu/packages/connman.scm @@ -71,22 +71,22 @@ `(("pkg-config" ,pkg-config) ("python" ,python-wrapper))) (inputs - `(("dbus" ,dbus) - ("glib" ,glib) - ("gnutls" ,gnutls) - ("iptables" ,iptables) - ("libmnl" ,libmnl) - ("lz4" ,lz4) ; required by openconnect.pc - ("readline" ,readline) - ;; These inputs are needed for connman to include the interface to - ;; these technologies so IF they are installed they can be used. - ;; TODO: add neard, ofono - ("openconnect" ,openconnect) - ("openvpn" ,openvpn) - ("ppp" ,ppp) - ("vpnc" ,vpnc) - ("wpa-supplicant" ,wpa-supplicant) - ("xl2tpd" ,xl2tpd))) + (list dbus + glib + gnutls + iptables + libmnl + lz4 ; required by openconnect.pc + readline + ;; These inputs are needed for connman to include the interface to + ;; these technologies so IF they are installed they can be used. + ;; TODO: add neard, ofono + openconnect + openvpn + ppp + vpnc + wpa-supplicant + xl2tpd)) (home-page "https://01.org/connman") (synopsis "Connection management daemon") (description "Connman provides a daemon for managing Internet connections. @@ -123,9 +123,9 @@ sharing) to clients via USB, ethernet, WiFi, cellular and Bluetooth.") (let* ((out (assoc-ref outputs "out")) (bin (string-append out "/bin/econnman-bin"))) (wrap-program bin - `("PYTHONPATH" ":" prefix (,(getenv "PYTHONPATH")))) + `("GUIX_PYTHONPATH" ":" prefix (,(getenv "GUIX_PYTHONPATH")))) #t)))))) - (native-inputs `(("pkg-config" ,pkg-config))) + (native-inputs (list pkg-config)) (inputs `(("efl" ,efl) ("python" ,python-wrapper) @@ -150,9 +150,9 @@ sharing) to clients via USB, ethernet, WiFi, cellular and Bluetooth.") (sha256 (base32 "0jn12wxwjznady6aniwmvahg1dj25p902sdwj0070biv6vx5c7dq")))) (inputs - `(("qtbase" ,qtbase-5))) + (list qtbase-5)) (native-inputs - `(("qttools" ,qttools))) + (list qttools)) (build-system gnu-build-system) (arguments '(#:phases |