apteryx pushed a commit to branch core-updates
in repository guix.
commit 58024a9283857f1d007e9144b3e668998c07b55d
Author: Maxime Devos <[email protected]>
AuthorDate: Fri Jul 2 12:07:45 2021 +0200
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 <[email protected]>
Modified-by: Maxim Cournoyer <[email protected]>
Change-Id: I96613a43578f77fbd6e8eff95fe98f04e88b0dba
---
gnu/packages/genealogy.scm | 7 ++++---
1 file 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")