diff options
author | Tanguy Le Carrour <tanguy@bioneland.org> | 2019-10-26 23:11:09 +0200 |
---|---|---|
committer | Mathieu Othacehe <m.othacehe@gmail.com> | 2019-10-28 11:28:59 +0100 |
commit | 7644b8b5a6fe1f0dfec9ca42c7611e90e7eb2173 (patch) | |
tree | 53480e09f00bf1e85fdf44ad814a265f3ad486bf /gnu | |
parent | 3dfd73f0a2362beddd70e910745a1ab452a714b8 (diff) | |
download | guix-7644b8b5a6fe1f0dfec9ca42c7611e90e7eb2173.tar guix-7644b8b5a6fe1f0dfec9ca42c7611e90e7eb2173.tar.gz |
gnu: profanity: Add configure flags so that build fails if libs are missing.
* gnu/packages/messaging.scm (profanity)[arguments]<#configure-flags>:
Add --enable-c-plugins and --enable-otr.
Signed-off-by: Mathieu Othacehe <m.othacehe@gmail.com>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/messaging.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm index 63b14287ce..626aec4908 100644 --- a/gnu/packages/messaging.scm +++ b/gnu/packages/messaging.scm @@ -1629,7 +1629,9 @@ are both supported).") (build-system gnu-build-system) (arguments '(#:configure-flags - (list "--enable-omemo" + (list "--enable-c-plugins" + "--enable-otr" + "--enable-omemo" "--enable-icons" "--enable-notifications"))) (inputs |