From aa84738393c7cfc4a4419a2253c8d33716b8d370 Mon Sep 17 00:00:00 2001 From: Jaggar <18173108+GigiaJ@users.noreply.github.com> Date: Sun, 16 Feb 2025 19:43:49 -0600 Subject: [PATCH] Update Bolt.scm --- Bolt.scm | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/Bolt.scm b/Bolt.scm index 6656bb7..640f09d 100644 --- a/Bolt.scm +++ b/Bolt.scm @@ -135,8 +135,13 @@ "-D BOLT_SKIP_LIBRARIES=1") #:phases #~(modify-phases %standard-phases - (replace 'check - (lambda _ (display "Do nothing.") #t)) + (delete 'check) + (add-after 'install 'link-cef + (lambda _ + (display (assoc-ref %outputs "out")) + (symlink (string-append (assoc-ref %build-inputs "chromium-embedded-framework") "/lib/libcef.so") (string-append (assoc-ref %outputs "out") "/opt/bolt-launcher/libcef.so")) + (display "Do nothing.") #t) + ) ) ))