diff options
author | Maxime Devos <maximedevos@telenet.be> | 2021-07-02 12:06:40 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-08-31 10:42:35 +0200 |
commit | 3e33f2e00ca3b662d0cd4f4bc62e74e0a9da07c8 (patch) | |
tree | f46ac7b740698885a10d5015c75dcd6bd7165f05 | |
parent | 8ea60f75259c08d571e688648fc4dff70702e68d (diff) | |
download | guix-3e33f2e00ca3b662d0cd4f4bc62e74e0a9da07c8.tar.gz guix-3e33f2e00ca3b662d0cd4f4bc62e74e0a9da07c8.zip |
gnu: remind: Add 'bash' input for 'wrap-program'.
It is required for cross-compilation.
* gnu/packages/calendar.scm
(remind)[inputs]: Add 'bash-minimal'.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Change-Id: I17b53c1bdb59eedffed8c9079bd7d065988bfac0
-rw-r--r-- | gnu/packages/calendar.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/calendar.scm b/gnu/packages/calendar.scm index a71da5ad0e..390b70382b 100644 --- a/gnu/packages/calendar.scm +++ b/gnu/packages/calendar.scm @@ -42,6 +42,7 @@ #:use-module (gnu packages admin) #:use-module (gnu packages autotools) #:use-module (gnu packages base) + #:use-module (gnu packages bash) #:use-module (gnu packages check) #:use-module (gnu packages dav) #:use-module (gnu packages docbook) @@ -270,7 +271,7 @@ interface} named 'ikhal'.") (list "bin/cm2rem.tcl" "bin/tkremind")))))))) (inputs - (list inetutils tcl tcllib tk)) + (list bash-minimal inetutils tcl tcllib tk)) (home-page "https://dianne.skoll.ca/projects/remind/") (synopsis "Sophisticated calendar and alarm program") (description |