[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: Add ruby-3.0.
From: |
guix-commits |
Subject: |
branch master updated: gnu: Add ruby-3.0. |
Date: |
Tue, 29 Dec 2020 13:51:41 -0500 |
This is an automated email from the git hooks/post-receive script.
cbaines pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 03c51c0 gnu: Add ruby-3.0.
03c51c0 is described below
commit 03c51c04430405fe405a3640e6a4d1d248b702fc
Author: Ryan Prior <rprior@protonmail.com>
AuthorDate: Fri Dec 25 17:57:26 2020 +0000
gnu: Add ruby-3.0.
* gnu/packages/ruby.scm (ruby-3.0): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net>
---
gnu/packages/ruby.scm | 14 ++++++++++++++
1 file changed, 14 insertions(+)
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index 5a89288..c5b1af7 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -188,6 +188,20 @@ a focus on simplicity and productivity.")
(native-inputs
`(("autoconf" ,autoconf)))))
+(define-public ruby-3.0
+ (package
+ (inherit ruby-2.7)
+ (version "3.0.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "http://cache.ruby-lang.org/pub/ruby/"
+ (version-major+minor version)
+ "/ruby-" version ".tar.xz"))
+ (sha256
+ (base32
+ "1cbcixwnr0y8q0lg67wjgplp06kjd6p6hjjh680csv3v0bpsxgv8"))))))
+
(define-public ruby-2.5
(package
(inherit ruby)
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: Add ruby-3.0.,
guix-commits <=