diff options
author | Christopher Baines <mail@cbaines.net> | 2020-04-01 19:17:40 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2020-05-13 17:37:23 +0100 |
commit | 7f1401fe5970b5cc96f5a1c9a74597d481913ec2 (patch) | |
tree | a59b0c83ac6a76964df39fbd251f9f555e31a6f2 /gnu/packages/ruby.scm | |
parent | bb3685e8d7cb73c130b887b6050efe82901e4880 (diff) | |
download | patches-7f1401fe5970b5cc96f5a1c9a74597d481913ec2.tar patches-7f1401fe5970b5cc96f5a1c9a74597d481913ec2.tar.gz |
gnu: ruby: Remove ruby-2.3.
No packages in Guix depend on Ruby 2.3, and it was declared as end-of-life on
2019-03-31 by the upstream project.
* gnu/packages/ruby.scm (ruby-2.3): Remove variable.
Diffstat (limited to 'gnu/packages/ruby.scm')
-rw-r--r-- | gnu/packages/ruby.scm | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index c92daf6062..41b30ebfc3 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -169,25 +169,6 @@ a focus on simplicity and productivity.") (delete-file-recursively "ext/fiddle/libffi-3.2.1") #t)))))) -(define-public ruby-2.3 - (package - (inherit ruby) - (version "2.3.8") - (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 - "1zhxbjff08pvbnxvn58krns6q0p6g4977q6ykfn823gxhifn63wi")) - (modules '((guix build utils))) - (snippet `(begin - ;; Remove bundled libffi - (delete-file-recursively "ext/fiddle/libffi-3.2.1") - #t)))))) - (define-public mruby (package (name "mruby") |