civodul pushed a commit to branch master
in repository guix.
commit 2227bb2ac2fed2a8bdeaf146bc6896b0e8bd2981
Author: Denis 'GNUtoo' Carikli <[email protected]>
AuthorDate: Fri Oct 22 00:10:16 2021 +0200
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 <[email protected]>
---
gnu/packages/display-managers.scm | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/display-managers.scm
b/gnu/packages/display-managers.scm
index 7f0cb46..ef5d143 100644
--- a/gnu/packages/display-managers.scm
+++ b/gnu/packages/display-managers.scm
@@ -39,6 +39,7 @@
#: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 @@ display manager which supports different greeters.")
("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+)))