diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2022-01-13 16:50:32 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2022-01-14 11:41:20 +0200 |
commit | 6a45d50f3a4be457e39f9495ea4fe614b5e1c88b (patch) | |
tree | cba27e212ae154374be036d0086aa3b8c335f9d0 /gnu | |
parent | a9558ec5e837e8d3b0891e67befd3bbb803ecb48 (diff) | |
download | guix-6a45d50f3a4be457e39f9495ea4fe614b5e1c88b.tar.gz guix-6a45d50f3a4be457e39f9495ea4fe614b5e1c88b.zip |
gnu: quassel: Enable tests.
* gnu/packages/irc.scm (quassel)[arguments]: Add configure-flag to
enable tests. Don't disable tests.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/irc.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/irc.scm b/gnu/packages/irc.scm index 7348bde46c..c8d41ef0c5 100644 --- a/gnu/packages/irc.scm +++ b/gnu/packages/irc.scm @@ -109,7 +109,8 @@ (arguments ;; The three binaries are not mutually exlusive, and are all built ;; by default. - '(#:configure-flags '(;;"-DWANT_QTCLIENT=OFF" + '(#:configure-flags '("-DBUILD_TESTING=ON" + ;;"-DWANT_QTCLIENT=OFF" ;;"-DWANT_CORE=OFF" ;;"-DWANT_MONO=OFF" "-DWITH_KDE=OFF" @@ -122,8 +123,7 @@ (add-after 'unpack 'patch-inxi-reference (lambda* (#:key inputs #:allow-other-keys) (let ((inxi (search-input-file inputs "/bin/inxi"))) - (symlink inxi "data/scripts/inxi"))))) - #:tests? #f)) ; no test target + (symlink inxi "data/scripts/inxi"))))))) (native-inputs (list extra-cmake-modules pkg-config qttools)) (inputs |