diff options
-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") |