mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: wpa-supplicant-light: Rename to wpa-supplicant-minimal.
* gnu/packages/admin.scm (wpa-supplicant-light): Rename to ... (wpa-supplicant-minimal): ...this. (wpa-supplicant): Use it. * gnu/system/install.scm (installation-os): Use it.
This commit is contained in:
parent
761b3d44fb
commit
1ce6f43a6b
2 changed files with 6 additions and 6 deletions
|
@ -703,9 +703,9 @@ (define-public sudo
|
||||||
;; See <http://www.sudo.ws/sudo/license.html>.
|
;; See <http://www.sudo.ws/sudo/license.html>.
|
||||||
(license license:x11)))
|
(license license:x11)))
|
||||||
|
|
||||||
(define-public wpa-supplicant-light
|
(define-public wpa-supplicant-minimal
|
||||||
(package
|
(package
|
||||||
(name "wpa-supplicant-light")
|
(name "wpa-supplicant-minimal")
|
||||||
(version "2.4")
|
(version "2.4")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
|
@ -795,12 +795,12 @@ (define (copy-man-page target)
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
(define-public wpa-supplicant
|
(define-public wpa-supplicant
|
||||||
(package (inherit wpa-supplicant-light)
|
(package (inherit wpa-supplicant-minimal)
|
||||||
(name "wpa-supplicant")
|
(name "wpa-supplicant")
|
||||||
(inputs `(("dbus" ,dbus)
|
(inputs `(("dbus" ,dbus)
|
||||||
,@(package-inputs wpa-supplicant-light)))
|
,@(package-inputs wpa-supplicant-minimal)))
|
||||||
(arguments
|
(arguments
|
||||||
(substitute-keyword-arguments (package-arguments wpa-supplicant-light)
|
(substitute-keyword-arguments (package-arguments wpa-supplicant-minimal)
|
||||||
((#:phases phases)
|
((#:phases phases)
|
||||||
`(alist-cons-after
|
`(alist-cons-after
|
||||||
'configure 'configure-for-dbus
|
'configure 'configure-for-dbus
|
||||||
|
|
|
@ -344,7 +344,7 @@ (define installation-os
|
||||||
parted ddrescue
|
parted ddrescue
|
||||||
grub ;mostly so xrefs to its manual work
|
grub ;mostly so xrefs to its manual work
|
||||||
cryptsetup
|
cryptsetup
|
||||||
wireless-tools iw wpa-supplicant-light iproute
|
wireless-tools iw wpa-supplicant-minimal iproute
|
||||||
;; XXX: We used to have GNU fdisk here, but as of version
|
;; XXX: We used to have GNU fdisk here, but as of version
|
||||||
;; 2.0.0a, that pulls Guile 1.8, which takes unreasonable
|
;; 2.0.0a, that pulls Guile 1.8, which takes unreasonable
|
||||||
;; space; furthermore util-linux's fdisk is already
|
;; space; furthermore util-linux's fdisk is already
|
||||||
|
|
Loading…
Reference in a new issue