diff options
Diffstat (limited to 'gnu/packages/graph.scm')
-rw-r--r-- | gnu/packages/graph.scm | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gnu/packages/graph.scm b/gnu/packages/graph.scm index 2549889a11..239910ad1a 100644 --- a/gnu/packages/graph.scm +++ b/gnu/packages/graph.scm @@ -146,7 +146,9 @@ distributions in empirical data. SIAM Review 51, 661-703 (2009)}).") ;; Use the same integer width as suitesparse-cxsparse, which ;; uses int64_t in SuiteSparse v6.0.0 and later. "-DIGRAPH_INTEGER_SIZE=64") - #:test-target "check" + #:modules '((guix build cmake-build-system) + ((guix build gnu-build-system) #:prefix gnu:) + (guix build utils)) #:phases #~(modify-phases %standard-phases (add-after 'unpack 'version-file @@ -178,6 +180,7 @@ distributions in empirical data. SIAM Review 51, 661-703 (2009)}).") (add-after 'build 'build-doc (lambda _ (invoke "cmake" "--build" "." "--target" "html"))) + (replace 'check (assoc-ref gnu:%standard-phases 'check)) (add-after 'install 'install-doc (lambda _ (copy-recursively @@ -536,8 +539,7 @@ intuitive way.") (arguments (list #:configure-flags #~'("-DFAISS_ENABLE_GPU=OFF" ; thanks, but no thanks, CUDA. - "-DFAISS_ENABLE_PYTHON=OFF" - "-DBUILD_TESTING=ON"))) + "-DFAISS_ENABLE_PYTHON=OFF"))) (inputs (list openblas)) (native-inputs |