mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-24 11:39:46 -05:00
gnu: lightdm-gtk-greeter: Add bash-minimal dependency.
The bash-minimal dependency is required by the wrap-program, and guix lint suggests to add it in the inputs. * gnu/packages/display-managers.scm (lightdm): add bash-minimal dependency Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
c5962a7297
commit
2227bb2ac2
1 changed files with 3 additions and 1 deletions
|
@ -39,6 +39,7 @@ (define-module (gnu packages display-managers)
|
|||
#:use-module (guix utils)
|
||||
#:use-module (gnu packages)
|
||||
#:use-module (gnu packages admin)
|
||||
#:use-module (gnu packages bash)
|
||||
#:use-module (gnu packages fontutils)
|
||||
#:use-module (gnu packages freedesktop)
|
||||
#:use-module (gnu packages gl)
|
||||
|
@ -307,7 +308,8 @@ (define-public lightdm-gtk-greeter
|
|||
("pkg-config" ,pkg-config)
|
||||
("xfce4-dev-tools" ,xfce4-dev-tools)))
|
||||
(inputs
|
||||
`(("lightdm" ,lightdm)
|
||||
`(("bash" ,bash-minimal) ; for wrap-program
|
||||
("lightdm" ,lightdm)
|
||||
("shared-mime-info" ,shared-mime-info)
|
||||
("at-spi2-core" ,at-spi2-core)
|
||||
("gtk+" ,gtk+)))
|
||||
|
|
Loading…
Reference in a new issue