This is an automated email from the git hooks/post-receive script.
civodul pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 89ab6bf gnu: guile: Add 3.0.3.
89ab6bf is described below
commit 89ab6bfbf1bff6da129664d81258e7eed4a8922f
Author: Ludovic Courtès <[email protected]>
AuthorDate: Sun Jun 21 23:23:23 2020 +0200
gnu: guile: Add 3.0.3.
* gnu/packages/guile.scm (guile-3.0.3): New variable.
---
gnu/packages/guile.scm | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/gnu/packages/guile.scm b/gnu/packages/guile.scm
index 34d348c..a8f5019 100644
--- a/gnu/packages/guile.scm
+++ b/gnu/packages/guile.scm
@@ -308,6 +308,19 @@ without requiring the source code to be rewritten.")
(files '("lib/guile/3.0/site-ccache"
"share/guile/site/3.0")))))))
+(define-public guile-3.0.3
+ ;; TODO: Make this 'guile-3.0' on the next rebuild cycle.
+ (package
+ (inherit guile-3.0)
+ (version "3.0.3")
+ (source (origin
+ (inherit (package-source guile-3.0))
+ (uri (string-append "mirror://gnu/guile/guile-"
+ version ".tar.xz"))
+ (sha256
+ (base32
+ "0fz6fgx7ran6nn0l978jmpckjc9knk4g3bddr75n0daqqmhjs95k"))))))
+
(define-public guile-next
(deprecated-package "guile-next" guile-3.0))