mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add ruby-3.4.
* gnu/packages/ruby.scm (ruby-3.4): New variable. Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
parent
d1a6171e86
commit
7082bcabec
1 changed files with 60 additions and 0 deletions
|
@ -115,6 +115,66 @@
|
||||||
license:gpl2+
|
license:gpl2+
|
||||||
license:gpl3+))
|
license:gpl3+))
|
||||||
|
|
||||||
|
(define-public ruby-3.4
|
||||||
|
(package
|
||||||
|
(name "ruby")
|
||||||
|
(version "3.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
|
||||||
|
"1bvhzbdwdj502wsrs97fvw6jvid2swzjvqj7v2kc1qrbnpzmk381"))))
|
||||||
|
(build-system gnu-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:test-target "test"
|
||||||
|
#:configure-flags
|
||||||
|
,(if (%current-target-system)
|
||||||
|
'(list (string-append
|
||||||
|
"LDFLAGS=-Wl,-rpath="
|
||||||
|
(assoc-ref %outputs "out") "/lib")
|
||||||
|
"--enable-shared")
|
||||||
|
''("--enable-shared")) ; dynamic linking
|
||||||
|
#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-before 'configure 'replace-bin-sh-and-remove-libffi
|
||||||
|
(lambda _
|
||||||
|
(substitute* '("configure.ac"
|
||||||
|
"template/Makefile.in"
|
||||||
|
"lib/rubygems/installer.rb"
|
||||||
|
"ext/pty/pty.c"
|
||||||
|
"io.c"
|
||||||
|
"lib/mkmf.rb"
|
||||||
|
"process.c"
|
||||||
|
"test/rubygems/test_gem_ext_configure_builder.rb"
|
||||||
|
"test/rdoc/test_rdoc_parser.rb"
|
||||||
|
"test/ruby/test_rubyoptions.rb"
|
||||||
|
"test/ruby/test_process.rb"
|
||||||
|
"test/ruby/test_system.rb"
|
||||||
|
"tool/rbinstall.rb")
|
||||||
|
(("/bin/sh") (which "sh"))))))))
|
||||||
|
(native-inputs
|
||||||
|
(append (if (%current-target-system)
|
||||||
|
(list this-package)
|
||||||
|
'())
|
||||||
|
(list autoconf libyaml)))
|
||||||
|
(inputs
|
||||||
|
(list readline openssl-1.1 libffi gdbm))
|
||||||
|
(propagated-inputs
|
||||||
|
(list zlib))
|
||||||
|
(native-search-paths
|
||||||
|
(list (search-path-specification
|
||||||
|
(variable "GEM_PATH")
|
||||||
|
(files (list (string-append "lib/ruby/vendor_ruby"))))))
|
||||||
|
(synopsis "Programming language interpreter")
|
||||||
|
(description "Ruby is a dynamic object-oriented programming language with
|
||||||
|
a focus on simplicity and productivity.")
|
||||||
|
(home-page "https://www.ruby-lang.org")
|
||||||
|
(license license:ruby)))
|
||||||
|
|
||||||
(define-public ruby-2.6
|
(define-public ruby-2.6
|
||||||
(package
|
(package
|
||||||
(name "ruby")
|
(name "ruby")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue