diff options
Diffstat (limited to 'gnu/packages/algebra.scm')
-rw-r--r-- | gnu/packages/algebra.scm | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/gnu/packages/algebra.scm b/gnu/packages/algebra.scm index ae90542fd7..83572e2fc6 100644 --- a/gnu/packages/algebra.scm +++ b/gnu/packages/algebra.scm @@ -152,7 +152,7 @@ greatest common divisor operations.") (define-public cm (package (name "cm") - (version "0.4.3") + (version "0.4.4") (source (origin (method url-fetch) (uri (string-append @@ -160,7 +160,7 @@ greatest common divisor operations.") version ".tar.gz")) (sha256 (base32 - "01dha0hl0daappjiydpk4ngl9nxkxli6a48jp6d7v85yjjykac5j")))) + "0zkdl4cka32jclhajm7wdpkyzjq1335l58janjisv88a1di9gyy6")))) (build-system gnu-build-system) (propagated-inputs (list mpfrcx zlib)) ; Header files included from lib/cm.h. @@ -831,8 +831,7 @@ cosine/ sine transforms or DCT/DST).") ;; See: https://fftw.org/release-notes.html (name "fftw-cmake") (build-system cmake-build-system) - (arguments (default-keyword-arguments '() - '())) + (arguments '(#:tests? #f)) (description (string-append (package-description fftw) " This CMake build offers the file FFTW3LibraryDepends.cmake required by some dependent packages, absent in the @@ -1202,7 +1201,8 @@ features, and more.") (inherit eigen) (name "eigen-benchmarks") (arguments - '(#:phases (modify-phases %standard-phases + '(#:tests? #f ; no tests + #:phases (modify-phases %standard-phases (delete 'configure) (replace 'build (lambda* (#:key outputs #:allow-other-keys) @@ -1285,9 +1285,7 @@ features, and more.") (file-name (git-file-name name version)))) (build-system cmake-build-system) (arguments - (list - #:configure-flags #~(list "-DBUILD_TESTS=ON") - #:test-target "xtest")) + (list #:configure-flags #~(list "-DBUILD_TESTS=ON"))) (native-inputs (list doctest googletest |