This is an automated email from the git hooks/post-receive script.

andreas pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 2195f70936 gnu: Add ruby-3.3.
2195f70936 is described below

commit 2195f70936b7aeec123d4e95345f1007d3a7bb06
Author: Andreas Enge <andr...@enge.fr>
AuthorDate: Fri Jun 14 19:23:15 2024 +0200

    gnu: Add ruby-3.3.
    
    * gnu/packages/ruby.scm (ruby-3.3): New variable.
    
    Change-Id: Ie26b97fdcea75e7eddabb2dba3fc91882be41b34
---
 gnu/packages/ruby.scm | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index 5c1e666bb0..9547481caf 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -292,6 +292,20 @@ a focus on simplicity and productivity.")
      (modify-inputs (package-inputs ruby-3.1)
        (prepend libyaml)))))
 
+(define-public ruby-3.3
+  (package
+    (inherit ruby-3.2)
+    (version "3.3.3")
+    (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
+         "07pwf3zkf7idl95agfjbv2lvamcp0spp0znqp9arb71ri19rkh43"))))))
+
 (define-public ruby ruby-3.1)
 
 (define-public mruby

Reply via email to