gnu: cl-clog: Fix build.

* gnu/packages/lisp-xyz.scm (sbcl-clog)[arguments]: Add 'fix-symbol-name'
  phase.

Change-Id: If9f5546eb252c69bb12a0904eb9db37140a90d24
This commit is contained in:
Guillaume Le Vaillant 2023-12-29 10:27:19 +01:00
parent fdc6ff3326
commit 6a7db35524
No known key found for this signature in database
GPG key ID: 6BE8208ADF21FE3F

View file

@ -26754,7 +26754,13 @@ (define-public sbcl-clog
sbcl-trivial-open-browser
sbcl-websocket-driver))
(arguments
'(#:asd-systems '("clog" "clog/docs" "clog/tools")))
'(#:asd-systems '("clog" "clog/docs" "clog/tools")
#:phases (modify-phases %standard-phases
(add-after 'unpack 'fix-symbol-name
(lambda _
(substitute* "source/clog-docs.lisp"
(("clog:@CLOG-MANUAL")
"clog::@CLOG_MANUAL")))))))
(home-page "https://github.com/rabbibotton/clog")
(synopsis "Common Lisp Omnificent GUI")
(description