diff options
author | Vivien Kraus <vivien@planete-kraus.eu> | 2021-11-18 19:44:03 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2021-11-19 14:26:14 +0100 |
commit | 86f031e877cd0f494d70f0ee67790628b63140f9 (patch) | |
tree | 0dea07ff5e45a8cf3ae4b1bacf669cd5b61e0f70 /gnu | |
parent | c00131d4ef4f05eac8c6516027dc31805feea6bc (diff) | |
download | guix-86f031e877cd0f494d70f0ee67790628b63140f9.tar.gz guix-86f031e877cd0f494d70f0ee67790628b63140f9.zip |
gnu: gmime: Install the vapi file.
* gnu/packages/mail.scm (gmime)[configure flags]: Build the vapi file.
[native-inputs]: Add vala.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/mail.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index c92ec14c04..c3be5330f3 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -727,13 +727,14 @@ It adds a large amount of new and improved features to mutt.") (native-inputs `(("pkg-config" ,pkg-config) ("gnupg" ,gnupg) ; for tests only - ("gobject-introspection" ,gobject-introspection))) + ("gobject-introspection" ,gobject-introspection) + ("vala" ,vala))) (inputs `(("glib" ,glib) ("gpgme" ,gpgme) ("zlib" ,zlib))) (arguments `(#:configure-flags - (list "--enable-introspection=yes") + (list "--enable-introspection=yes" "--enable-vapigen=yes") #:phases (modify-phases %standard-phases (add-after |