guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/07: gnu: guile-commonmark: Add "guile3.0-commonmark" variant.


From: guix-commits
Subject: 01/07: gnu: guile-commonmark: Add "guile3.0-commonmark" variant.
Date: Sun, 19 Jan 2020 17:12:11 -0500 (EST)

civodul pushed a commit to branch master
in repository guix.

commit 1fa342323619372326106fb923e72ae7beecb5e6
Author: Ludovic Courtès <address@hidden>
AuthorDate: Sat Jan 18 18:41:03 2020 +0100

    gnu: guile-commonmark: Add "guile3.0-commonmark" variant.
    
    * gnu/packages/guile-xyz.scm (guile-commonmark)[source]: Add 'modules'
    and 'snippet'.
    (guile3.0-commonmark): New variable.
---
 gnu/packages/guile-xyz.scm | 16 +++++++++++++++-
 1 file changed, 15 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm
index 755d1ef..7d5621e 100644
--- a/gnu/packages/guile-xyz.scm
+++ b/gnu/packages/guile-xyz.scm
@@ -2025,7 +2025,15 @@ key-value cache and store.")
                                   "/" name "-" version ".tar.gz"))
               (sha256
                (base32
-                "17lrsdisa3kckh24q114vfmzdc4wkqa6ccwl4hdlrng5wpn1iman"))))
+                "17lrsdisa3kckh24q114vfmzdc4wkqa6ccwl4hdlrng5wpn1iman"))
+              (modules '((guix build utils)))
+              (snippet
+               '(begin
+                  ;; Allow builds with Guile 3.0.
+                  (substitute* "configure"
+                    (("2\\.2 2\\.0")
+                     "3.0 2.2 2.0"))
+                  #t))))
     (build-system gnu-build-system)
     (inputs
      `(("guile" ,guile-2.2)))
@@ -2041,6 +2049,12 @@ is no support for parsing block and inline level HTML.")
     (home-page "https://github.com/OrangeShark/guile-commonmark";)
     (license license:lgpl3+)))
 
+(define-public guile3.0-commonmark
+  (package
+    (inherit guile-commonmark)
+    (name "guile3.0-commonmark")
+    (inputs `(("guile" ,guile-3.0)))))
+
 (define-public guile2.0-commonmark
   (package
     (inherit guile-commonmark)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]