guix-commits
[Top][All Lists]
Advanced

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

01/04: ruby: Replace with ruby-2.4.1.


From: Ben Woodcroft
Subject: 01/04: ruby: Replace with ruby-2.4.1.
Date: Mon, 7 Aug 2017 20:32:57 -0400 (EDT)

benwoodcroft pushed a commit to branch master
in repository guix.

commit e7ea30d59a22857e7a2992ef7bd099b8f88127f7
Author: Ben Woodcroft <address@hidden>
Date:   Tue Aug 8 09:19:22 2017 +1000

    ruby: Replace with ruby-2.4.1.
    
    * gnu/packages/ruby.scm (ruby-2.4.1): New variable.
    (ruby)[replacement]: New field.
---
 gnu/packages/ruby.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index 414b38c..78ec9cd 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -49,6 +49,7 @@
 (define-public ruby
   (package
     (name "ruby")
+    (replacement ruby-2.4.1)
     (version "2.4.0")
     (source
      (origin
@@ -102,6 +103,26 @@ a focus on simplicity and productivity.")
     (home-page "https://ruby-lang.org";)
     (license license:ruby)))
 
+(define-public ruby-2.4.1
+  (package
+    (inherit ruby)
+    (name "ruby")
+    (version "2.4.1")
+    (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
+         "0m763zf2v0jhrha3cx21g4dif6vc9gm714invs8h3sg35ncskj2g"))
+       (modules '((guix build utils)))
+       (snippet `(begin
+                   ;; Remove bundled libffi
+                   (delete-file-recursively "ext/fiddle/libffi-3.2.1")
+                   #t))))))
+
 (define-public ruby-2.3
   (package
     (inherit ruby)



reply via email to

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