diff options
author | techchud <protrude_paying969@simplelogin.com> | 2025-09-19 04:29:02 -0500 |
---|---|---|
committer | techchud <protrude_paying969@simplelogin.com> | 2025-09-19 04:29:02 -0500 |
commit | 41b3496e24e3daf850a0e1bd67424c419a60031b (patch) | |
tree | fa7cede9999683566af133d9481bb9c4c40559a6 | |
parent | fd14f17fc2b71ee979f7b833c01572a2e16170a7 (diff) | |
download | guix-techchud-41b3496e24e3daf850a0e1bd67424c419a60031b.tar.gz guix-techchud-41b3496e24e3daf850a0e1bd67424c419a60031b.tar.bz2 guix-techchud-41b3496e24e3daf850a0e1bd67424c419a60031b.zip |
remove check
-rw-r--r-- | archival.scm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/archival.scm b/archival.scm index f0e5e20..b4f4255 100644 --- a/archival.scm +++ b/archival.scm @@ -170,7 +170,10 @@ (inputs (list fmt gsl-lite compile-time-regular-expressions expected-lite)) (arguments (list + #:tests? #f #:configure-flags + #:phases (modify-phases %standard-phases + (delete 'check)) ; no configure script #~(list "-DTERMCONTROL_BUILD_TESTS=OFF" "-DCMAKE_INSTALL_INCLUDEDIR=include" @@ -292,7 +295,8 @@ (build-system cmake-build-system) (inputs (list gcc-toolchain-14 fmt gsl-lite cli11 expected-lite nlohmann-json re2-cmake yaml-cpp compile-time-regular-expressions palacaze-sigslot date bencode fbdtemme-termcontrol fbdtemme-cliprogress fbdtemme-dottorrent tbb openssl)) ;(arguments - ;`(#:phases (modify-phases %standard-phases + ;`( + ; #:phases (modify-phases %standard-phases ; (delete 'configure)) ; no configure script ; #:make-flags (list (string-append "CC=" ,(cc-for-target)) ; (string-append "PREFIX=" (assoc-ref %outputs "out")) |