diff options
author | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2023-11-04 07:43:44 +0100 |
---|---|---|
committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2023-11-04 07:43:44 +0100 |
commit | 72e886328c14c832b2ed71c400069b63852ee18d (patch) | |
tree | 92b4f32df417af5cbb9433386d996ec7d17522e9 /gnu/packages/markup.scm | |
parent | 1c41971e721dde203580ec17899beae546f1133a (diff) | |
parent | f54f36b363a86bb033275e3a0594974d3d91bd53 (diff) |
Merge branch 'master' into gnome-team
Change-Id: I88d3789460d1a89917451d80405d89a2824006ac
Diffstat (limited to 'gnu/packages/markup.scm')
-rw-r--r-- | gnu/packages/markup.scm | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/gnu/packages/markup.scm b/gnu/packages/markup.scm index ad2d74f742..6ee7bebf57 100644 --- a/gnu/packages/markup.scm +++ b/gnu/packages/markup.scm @@ -391,7 +391,7 @@ CommonMark C library libcmark. It closely follows the original API.") (package (inherit cmark) (name "cmark-gfm") - (version "0.29.0.gfm.2") + (version "0.29.0.gfm.13") (home-page "https://github.com/github/cmark-gfm") (source (origin (method git-fetch) @@ -399,16 +399,15 @@ CommonMark C library libcmark. It closely follows the original API.") (file-name (git-file-name name version)) (sha256 (base32 - "0vz6zs3m22k7jzfj4782lahciwfjlbi4m3qz5crsmssip3rwdy7h")))) + "1apy9i76rgs0bmgdlpjszv0fpqhlap2s12m68wvnsv8j3fsqc90y")))) (arguments - '(#:test-target "test" - #:phases (modify-phases %standard-phases - (add-after 'install 'install-config - (lambda* (#:key outputs #:allow-other-keys) - (let ((out (assoc-ref outputs "out"))) - ;; XXX: cmark-gfm-core-extensions.h includes this file. - (install-file "src/config.h" - (string-append out "/include")))))))) + (list #:test-target "test" + #:phases #~(modify-phases %standard-phases + (add-after 'install 'install-config + (lambda _ + ;; XXX: cmark-gfm-core-extensions.h includes this file. + (install-file "src/config.h" + (string-append #$output "/include"))))))) (synopsis "GitHub flavored CommonMark") (description "This package is a fork of @code{cmark}, with GitHub-specific Markdown |