gnu: wpa-supplicant: Install DBUS access configuration.
* gnu/packages/admin.scm (wpa-supplicant): Install DBUS configuration file.
This commit is contained in:
parent
e1ac691dfa
commit
24066017a9
|
@ -783,7 +783,15 @@ This package provides the 'wpa_supplicant' daemon and the 'wpa_cli' command.")
|
||||||
CONFIG_CTRL_IFACE_DBUS_INTRO=y\n" port)
|
CONFIG_CTRL_IFACE_DBUS_INTRO=y\n" port)
|
||||||
(close-port port))
|
(close-port port))
|
||||||
#t)
|
#t)
|
||||||
,phases))))))
|
(alist-cons-after
|
||||||
|
'install-man-pages 'install-dbus-conf
|
||||||
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
|
(let* ((out (assoc-ref outputs "out"))
|
||||||
|
(dir (string-append out "/etc/dbus-1/system.d")))
|
||||||
|
(mkdir-p dir)
|
||||||
|
(copy-file "dbus/dbus-wpa_supplicant.conf"
|
||||||
|
(string-append dir "/wpa_supplicant.conf"))))
|
||||||
|
,phases)))))))
|
||||||
|
|
||||||
(define-public wakelan
|
(define-public wakelan
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in New Issue