diff options
author | Maxime Devos <maximedevos@telenet.be> | 2021-07-02 12:07:45 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-08-31 10:42:43 +0200 |
commit | 4b2bf5ac2528fdc0c89662ac700e822c14ba3ad1 (patch) | |
tree | 20831861dc9b771b1b5f222005640d6e9fbe27ac | |
parent | e93a4c5c197f34eb6c4403ea2a12c92fe008e53b (diff) | |
download | guix-4b2bf5ac2528fdc0c89662ac700e822c14ba3ad1.tar.gz guix-4b2bf5ac2528fdc0c89662ac700e822c14ba3ad1.zip |
gnu: gramps: Add 'bash' input for 'wrap-program'.
It is required for cross-compilation.
* gnu/packages/genealogy.scm
(gramps)[inputs]: Add 'bash-minimal'.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Change-Id: I96613a43578f77fbd6e8eff95fe98f04e88b0dba
-rw-r--r-- | gnu/packages/genealogy.scm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/packages/genealogy.scm b/gnu/packages/genealogy.scm index c1cd26a9c4..36c05fff28 100644 --- a/gnu/packages/genealogy.scm +++ b/gnu/packages/genealogy.scm @@ -22,6 +22,7 @@ #:use-module (guix git-download) #:use-module ((guix licenses) #:prefix license:) #:use-module (guix packages) + #:use-module (gnu packages bash) #:use-module (gnu packages fonts) #:use-module (gnu packages freedesktop) #:use-module (gnu packages geo) @@ -54,7 +55,8 @@ `(("gettext" ,gettext-minimal) ("intltool" ,intltool))) (inputs - (list cairo + (list bash-minimal + cairo font-gnu-freefont geocode-glib gexiv2 @@ -100,8 +102,7 @@ #f)))) inputs))) (wrap-program (string-append out "/bin/gramps") - `("GI_TYPELIB_PATH" ":" prefix ,(filter identity paths)))) - #t)) + `("GI_TYPELIB_PATH" ":" prefix ,(filter identity paths)))))) (add-after 'wrap 'glib-or-gtk-wrap (assoc-ref glib-or-gtk:%standard-phases 'glib-or-gtk-wrap))))) (home-page "https://gramps-project.org") |