diff options
author | Raghav Gururajan <rg@raghavgururajan.name> | 2021-03-11 11:23:56 -0500 |
---|---|---|
committer | Raghav Gururajan <rg@raghavgururajan.name> | 2021-09-05 10:26:17 -0400 |
commit | 0c47823a1d818bda8cab989bf66d3e75e577191a (patch) | |
tree | b39bbc60f23a9caf30bb5340b3c31947f4b3da74 | |
parent | 35f9a8b1d45aafdb6d352b2e7d6c283d0ab8d389 (diff) | |
download | guix-0c47823a1d818bda8cab989bf66d3e75e577191a.tar.gz |
gnu: vala: Enable coverage support.
* gnu/packages/gnome.scm (vala) [arguments]<#:configure-flags> [--enable-coverage]: New flag. Signed-off-by: Léo Le Bouter <lle-bout@zaclys.net>
-rw-r--r-- | gnu/packages/gnome.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 6bfa8feebc..90a0eba4a3 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -4346,7 +4346,8 @@ passwords in the GNOME keyring.") "1nx5xjarpkl9hgy0qbqfczx7d7clh5g1r8xr5xp8b97c5fsc2rb1")))) (build-system glib-or-gtk-build-system) (arguments - '(#:phases + '(#:configure-flags '("--enable-coverage") + #:phases (modify-phases %standard-phases (add-before 'check 'pre-check (lambda _ |