glv pushed a commit to branch master
in repository guix.

commit e9bd9a2d58001283e4be51bd6f67accb4c211c2e
Author: jgart <[email protected]>
AuthorDate: Thu Oct 14 04:24:49 2021 -0400

    gnu: janet: Upgrade to 1.18.0.
    
    * gnu/packages/lisp.scm (janet): Upgrade to 1.18.0.
    
    Signed-off-by: Guillaume Le Vaillant <[email protected]>
---
 gnu/packages/lisp.scm | 16 +++++++++-------
 1 file changed, 9 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm
index b5aa6a0..f81e55f 100644
--- a/gnu/packages/lisp.scm
+++ b/gnu/packages/lisp.scm
@@ -20,6 +20,7 @@
 ;;; Copyright © 2021 Sharlatan Hellseher <[email protected]>
 ;;; Copyright © 2021 Paul A. Patience <[email protected]>
 ;;; Copyright © 2021 Charles Jackson <[email protected]>
+;;; Copyright © 2021 jgart <[email protected]>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -1155,7 +1156,7 @@ including a built-in database engine and a GUI system.")
 (define-public janet
   (package
     (name "janet")
-    (version "1.12.2")
+    (version "1.18.0")
     (source
      (origin
        (method git-fetch)
@@ -1164,14 +1165,15 @@ including a built-in database engine and a GUI system.")
              (commit (string-append "v" version))))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "0if514zdmbjvvrsa9x5yfvg2b14sz53yaka12g3yhwkq8ls3qk0c"))))
+        (base32 "1wd6b6dmcn6snw79vn5b74ff5mk97mdagav7vnxklqzlqislg9qq"))))
     (build-system gnu-build-system)
     (arguments
-     `(#:make-flags (list
-                     (string-append "DESTDIR=" (assoc-ref %outputs "out"))
-                     (string-append "PREFIX=")
-                     (string-append "CC=" (assoc-ref %build-inputs "gcc")
-                                    "/bin/gcc"))
+     `(#:make-flags
+       (list
+         (string-append "DESTDIR=" (assoc-ref %outputs "out"))
+         (string-append "PREFIX=")
+         (string-append "CC=" (assoc-ref %build-inputs "gcc")
+                        "/bin/gcc"))
        #:phases
        (modify-phases %standard-phases
          (delete 'configure)

Reply via email to