diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2025-02-11 17:15:16 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2025-02-11 17:15:16 +0200 |
commit | 1038c4da36a46d259f98ba1d6bc75cfb041d31ae (patch) | |
tree | 23763e6bd3e69ac93a1380b8a141df51ca7a218a | |
parent | 3fc24b4a6ab9612919c8661d2df77731861e36b4 (diff) | |
download | guix-1038c4da36a46d259f98ba1d6bc75cfb041d31ae.tar.gz guix-1038c4da36a46d259f98ba1d6bc75cfb041d31ae.zip |
gnu: greetd: Refer to the correct bash.
This fixes https://issues.guix.gnu.org/76105.
* gnu/packages/admin.scm (greetd)[inputs]: Add bash.
Reported-by: Felix Lechner <felix.lechner@lease-up.com>
Change-Id: I8d7874dda2d20607e5a802ac971b6478f0aea638
-rw-r--r-- | gnu/packages/admin.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm index 1b6103d493..54df5aa5c2 100644 --- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm @@ -9,7 +9,7 @@ ;;; Copyright © 2016, 2017, 2020 Leo Famulari <leo@famulari.name> ;;; Copyright © 2016 Pjotr Prins <pjotr.guix@thebird.nl> ;;; Copyright © 2016, 2017, 2023 Ricardo Wurmus <rekado@elephly.net> -;;; Copyright © 2016-2024 Efraim Flashner <efraim@flashner.co.il> +;;; Copyright © 2016-2025 Efraim Flashner <efraim@flashner.co.il> ;;; Copyright © 2016 Peter Feigl <peter.feigl@nexoid.at> ;;; Copyright © 2016 John J. Foerch <jjfoerch@earthlink.net> ;;; Copyright © 2016, 2017 Nikita <nikita@n0.is> @@ -5942,7 +5942,8 @@ it won't take longer to install 15 machines than it would to install just 2.") (install-file "greetd-ipc.7" man7) (install-file "agreety.1" man1)))))))) (inputs - (list linux-pam)) + ;; Full bash, not bash-minimal. See https://issues.guix.gnu.org/76105. + (list bash linux-pam)) (native-inputs (list scdoc)) (synopsis "Minimal and flexible login manager daemon") |