guix-commits
[Top][All Lists]
Advanced

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

11/12: gnu: ruby: Update to 2.6.5.


From: guix-commits
Subject: 11/12: gnu: ruby: Update to 2.6.5.
Date: Tue, 14 Jan 2020 18:47:41 -0500 (EST)

cbaines pushed a commit to branch core-updates
in repository guix.

commit 4914c157fd3380dd25a1b00f5b44638943f6353b
Author: Christopher Baines <address@hidden>
AuthorDate: Mon Jan 13 19:59:05 2020 +0000

    gnu: ruby: Update to 2.6.5.
    
    Make zlib a propagated-input, as the pkgconfig configuration includes 
linking
    against zlib as default, which means that gems with native components will
    fail to build without zlib.
    
    * gnu/packages/ruby.scm (ruby): Update to 2.6.5.
---
 gnu/packages/ruby.scm | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index 79a36e9..ff1b637 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -78,7 +78,7 @@
 (define-public ruby
   (package
     (name "ruby")
-    (version "2.5.3")
+    (version "2.6.5")
     (source
      (origin
        (method url-fetch)
@@ -87,7 +87,7 @@
                            "/ruby-" version ".tar.xz"))
        (sha256
         (base32
-         "0vrhrw7kcz9mg0jkqnihkcxqy5k05v8k1j0y2735z8wfk8sx1j8w"))
+         "0qhsw2mr04f3lqinkh557msr35pb5rdaqy4vdxcj91flgxqxmmnm"))
        (modules '((guix build utils)))
        (snippet `(begin
                    ;; Remove bundled libffi
@@ -118,8 +118,9 @@
      `(("readline" ,readline)
        ("openssl" ,openssl)
        ("libffi" ,libffi)
-       ("gdbm" ,gdbm)
-       ("zlib" ,zlib)))
+       ("gdbm" ,gdbm)))
+    (propagated-inputs
+     `(("zlib" ,zlib)))
     (native-search-paths
      (list (search-path-specification
             (variable "GEM_PATH")



reply via email to

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