gnu: cl-clog: Fix build.
* gnu/packages/lisp-xyz.scm (sbcl-clog)[arguments]: Add 'fix-symbol-name' phase. Change-Id: If9f5546eb252c69bb12a0904eb9db37140a90d24master
parent
fdc6ff3326
commit
6a7db35524
|
@ -26754,7 +26754,13 @@ inspired by Haskell package @code{Data.List}.")
|
||||||
sbcl-trivial-open-browser
|
sbcl-trivial-open-browser
|
||||||
sbcl-websocket-driver))
|
sbcl-websocket-driver))
|
||||||
(arguments
|
(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")
|
(home-page "https://github.com/rabbibotton/clog")
|
||||||
(synopsis "Common Lisp Omnificent GUI")
|
(synopsis "Common Lisp Omnificent GUI")
|
||||||
(description
|
(description
|
||||||
|
|
Reference in New Issue