mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 05:39:41 -05:00
gnu: 3bmd: Update to 0.0.0-2.6fc5759.
* gnu/packages/lisp-xyz.scm (sbcl-3bmd): Update to 0.0.0-2.6fc5759. [inputs]: Add alexandria. [arguments]: Add extension systems in 'asd-systems'. Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
This commit is contained in:
parent
28b307b09f
commit
80546d54d2
1 changed files with 18 additions and 12 deletions
|
@ -1683,10 +1683,11 @@ (define-public ecl-colorize
|
||||||
(sbcl-package->ecl-package sbcl-colorize))
|
(sbcl-package->ecl-package sbcl-colorize))
|
||||||
|
|
||||||
(define-public sbcl-3bmd
|
(define-public sbcl-3bmd
|
||||||
(let ((commit "192ea13435b605a96ef607df51317056914cabbd"))
|
(let ((commit "6fc5759448f6f6df6f6df556e020a289a2643288")
|
||||||
|
(revision "2"))
|
||||||
(package
|
(package
|
||||||
(name "sbcl-3bmd")
|
(name "sbcl-3bmd")
|
||||||
(version (git-version "0.0.0" "1" commit))
|
(version (git-version "0.0.0" revision commit))
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
|
@ -1694,24 +1695,29 @@ (define-public sbcl-3bmd
|
||||||
(url "https://github.com/3b/3bmd")
|
(url "https://github.com/3b/3bmd")
|
||||||
(commit commit)))
|
(commit commit)))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32 "1avmbp8xdjlbqpqk7p3vmj7abiw5p3vb5mrxp4wlvgql4sf6z3p4"))
|
||||||
"1rgv3gi7wf963ikmmpk132wgn0icddf226gq3bmcnk1fr3v9gf2f"))
|
|
||||||
(file-name (git-file-name "3bmd" version))))
|
(file-name (git-file-name "3bmd" version))))
|
||||||
(build-system asdf-build-system/sbcl)
|
(build-system asdf-build-system/sbcl)
|
||||||
(arguments
|
(arguments
|
||||||
;; FIXME: We need to specify the name because the build-system thinks
|
;; FIXME: #41437 - Build fails when package name starts from a digit
|
||||||
;; "3" is a version marker.
|
`(#:asd-systems
|
||||||
`(#:asd-systems '("3bmd"
|
'("3bmd"
|
||||||
|
"3bmd-ext-definition-lists"
|
||||||
|
"3bmd-ext-math"
|
||||||
|
"3bmd-ext-tables"
|
||||||
|
"3bmd-ext-wiki-links"
|
||||||
|
"3bmd-youtube"
|
||||||
"3bmd-ext-code-blocks")))
|
"3bmd-ext-code-blocks")))
|
||||||
(inputs
|
(inputs
|
||||||
`(("colorize" ,sbcl-colorize)
|
`(("alexandria" ,sbcl-alexandria)
|
||||||
|
("colorize" ,sbcl-colorize)
|
||||||
("esrap" ,sbcl-esrap)
|
("esrap" ,sbcl-esrap)
|
||||||
("split-sequence" ,sbcl-split-sequence)))
|
("split-sequence" ,sbcl-split-sequence)))
|
||||||
|
(home-page "https://github.com/3b/3bmd")
|
||||||
(synopsis "Markdown processor in Command Lisp using esrap parser")
|
(synopsis "Markdown processor in Command Lisp using esrap parser")
|
||||||
(description
|
(description
|
||||||
"Common Lisp Markdown -> HTML converter, using @command{esrap} for
|
"This is a Common Lisp Markdown to HTML converter, using @command{esrap}
|
||||||
parsing, and grammar based on @command{peg-markdown}.")
|
for parsing, and grammar based on @command{peg-markdown}.")
|
||||||
(home-page "https://github.com/3b/3bmd")
|
|
||||||
(license license:expat))))
|
(license license:expat))))
|
||||||
|
|
||||||
(define-public cl-3bmd
|
(define-public cl-3bmd
|
||||||
|
|
Loading…
Reference in a new issue