2017-10-29 15:51:16 -04:00
{ stdenv , buildPackages , lib
2019-09-07 13:02:40 +00:00
, fetchurl , fetchpatch , fetchFromSavannah , fetchFromGitHub
2022-04-09 10:54:25 +01:00
, zlib , gdbm , ncurses , readline , groff , libyaml , libffi , jemalloc , autoreconfHook , bison
2018-05-04 19:56:38 +02:00
, autoconf , libiconv , libobjc , libunwind , Foundation
2023-05-12 14:17:16 +00:00
, buildEnv , bundler , bundix , cargo , rustPlatform , rustc
2023-01-11 10:20:40 -05:00
, makeBinaryWrapper , buildRubyGem , defaultGemConfig , removeReferencesTo
2022-04-09 10:54:25 +01:00
, openssl , openssl_1_1
2023-03-08 16:50:57 +11:00
, linuxPackages , libsystemtap
2015-09-26 06:25:01 -07:00
} @ args :
let
2016-09-20 17:41:16 +01:00
op = lib . optional ;
ops = lib . optionals ;
opString = lib . optionalString ;
2015-09-26 06:25:01 -07:00
config = import ./config.nix { inherit fetchFromSavannah ; } ;
2021-07-16 04:20:00 +00:00
rubygems = import ./rubygems { inherit stdenv lib fetchurl ; } ;
2015-09-26 06:25:01 -07:00
2016-09-20 17:41:16 +01:00
# Contains the ruby version heuristics
rubyVersion = import ./ruby-version.nix { inherit lib ; } ;
2023-12-13 06:47:11 +11:00
generic = { version , hash , cargoHash ? null }: let
2016-09-20 17:41:16 +01:00
ver = version ;
2020-12-29 04:20:00 +00:00
atLeast30 = lib . versionAtLeast ver . majMin " 3 . 0 " ;
2023-03-09 17:55:45 +09:00
atLeast31 = lib . versionAtLeast ver . majMin " 3 . 1 " ;
2023-02-24 04:20:00 +00:00
atLeast32 = lib . versionAtLeast ver . majMin " 3 . 2 " ;
2023-04-30 14:56:44 +08:00
# https://github.com/ruby/ruby/blob/v3_2_2/yjit.h#L21
yjitSupported = atLeast32 && ( stdenv . hostPlatform . isx86_64 || ( ! stdenv . hostPlatform . isWindows && stdenv . hostPlatform . isAarch64 ) ) ;
2015-09-26 06:25:01 -07:00
self = lib . makeOverridable (
2018-05-04 19:56:38 +02:00
{ stdenv , buildPackages , lib
2019-09-07 13:02:40 +00:00
, fetchurl , fetchpatch , fetchFromSavannah , fetchFromGitHub
2019-05-18 17:45:38 +00:00
, rubygemsSupport ? true
2015-09-26 06:25:01 -07:00
, zlib , zlibSupport ? true
2022-04-09 10:54:25 +01:00
, openssl , openssl_1_1 , opensslSupport ? true
2015-09-26 06:25:01 -07:00
, gdbm , gdbmSupport ? true
, ncurses , readline , cursesSupport ? true
2019-05-06 00:39:16 +02:00
, groff , docSupport ? true
2015-09-26 06:25:01 -07:00
, libyaml , yamlSupport ? true
, libffi , fiddleSupport ? true
2021-02-12 21:29:10 +01:00
, jemalloc , jemallocSupport ? false
2023-03-08 16:50:57 +11:00
, linuxPackages , systemtap ? linuxPackages . systemtap , libsystemtap , dtraceSupport ? false
2020-06-07 10:19:16 +03:00
# By default, ruby has 3 observed references to stdenv.cc:
#
# - If you run:
# ruby -e "puts RbConfig::CONFIG['configure_args']"
# - In:
2021-03-06 17:24:04 -05:00
# $out/${passthru.libPath}/${stdenv.hostPlatform.system}/rbconfig.rb
2020-06-07 10:19:16 +03:00
# Or (usually):
# $(nix-build -A ruby)/lib/ruby/2.6.0/x86_64-linux/rbconfig.rb
# - In $out/lib/libruby.so and/or $out/lib/libruby.dylib
2023-02-24 04:20:00 +00:00
, removeReferencesTo , jitSupport ? yjitSupport
2023-05-12 14:17:16 +00:00
, cargo , rustPlatform , rustc , yjitSupport ? yjitSupported
2015-09-26 06:25:01 -07:00
, autoreconfHook , bison , autoconf
2018-05-04 19:56:38 +02:00
, buildEnv , bundler , bundix
, libiconv , libobjc , libunwind , Foundation
2023-01-11 10:20:40 -05:00
, makeBinaryWrapper , buildRubyGem , defaultGemConfig
2023-03-30 04:20:00 +00:00
, baseRuby ? buildPackages . ruby . override {
2021-09-17 22:12:30 -07:00
docSupport = false ;
rubygemsSupport = false ;
}
2023-02-24 04:20:00 +00:00
, useBaseRuby ? stdenv . hostPlatform != stdenv . buildPlatform
2015-09-26 06:25:01 -07:00
} :
2019-04-28 12:30:52 +00:00
stdenv . mkDerivation rec {
2019-08-13 21:52:01 +00:00
pname = " r u b y " ;
inherit version ;
2019-04-28 12:30:52 +00:00
2022-03-11 11:53:36 +09:00
src = fetchurl {
2018-12-25 14:25:45 -05:00
url = " h t t p s : / / c a c h e . r u b y - l a n g . o r g / p u b / r u b y / ${ ver . majMin } / r u b y - ${ ver } . t a r . g z " ;
2023-12-13 06:47:11 +11:00
inherit hash ;
2015-09-26 06:25:01 -07:00
} ;
# Have `configure' avoid `/usr/bin/nroff' in non-chroot builds.
2018-02-13 14:11:17 -06:00
NROFF = if docSupport then " ${ groff } / b i n / n r o f f " else null ;
2015-09-26 06:25:01 -07:00
2019-05-06 00:38:52 +02:00
outputs = [ " o u t " ] ++ lib . optional docSupport " d e v d o c " ;
2023-02-24 04:20:00 +00:00
strictDeps = true ;
2018-12-11 08:01:58 +00:00
nativeBuildInputs = [ autoreconfHook bison ]
++ ( op docSupport groff )
2023-03-08 16:50:57 +11:00
++ ( ops ( dtraceSupport && stdenv . isLinux ) [ systemtap libsystemtap ] )
2023-05-12 14:17:16 +00:00
++ ops yjitSupport [ rustPlatform . cargoSetupHook cargo rustc ]
2021-09-17 22:12:30 -07:00
++ op useBaseRuby baseRuby ;
2019-12-28 12:29:24 +01:00
buildInputs = [ autoconf ]
++ ( op fiddleSupport libffi )
2015-09-26 06:25:01 -07:00
++ ( ops cursesSupport [ ncurses readline ] )
++ ( op zlibSupport zlib )
2023-05-14 20:39:41 +02:00
++ ( op ( atLeast30 && opensslSupport ) openssl )
++ ( op ( ! atLeast30 && opensslSupport ) openssl_1_1 )
2015-09-26 06:25:01 -07:00
++ ( op gdbmSupport gdbm )
++ ( op yamlSupport libyaml )
# Looks like ruby fails to build on darwin without readline even if curses
# support is not enabled, so add readline to the build inputs if curses
# support is disabled (if it's enabled, we already have it) and we're
# running on darwin
2018-05-04 19:56:38 +02:00
++ op ( ! cursesSupport && stdenv . isDarwin ) readline
++ ops stdenv . isDarwin [ libiconv libobjc libunwind Foundation ] ;
2022-06-06 13:13:32 +09:00
propagatedBuildInputs = op jemallocSupport jemalloc ;
2015-09-26 06:25:01 -07:00
enableParallelBuilding = true ;
2023-03-16 08:01:21 +00:00
# /build/ruby-2.7.7/lib/fileutils.rb:882:in `chmod':
# No such file or directory @ apply2files - ...-ruby-2.7.7-devdoc/share/ri/2.7.0/system/ARGF/inspect-i.ri (Errno::ENOENT)
# make: *** [uncommon.mk:373: do-install-all] Error 1
enableParallelInstalling = false ;
2015-09-26 06:25:01 -07:00
2023-02-24 04:20:00 +00:00
patches = op ( lib . versionOlder ver . majMin " 3 . 1 " ) ./do-not-regenerate-revision.h.patch
2023-03-09 17:55:45 +09:00
++ op ( atLeast30 && useBaseRuby ) (
if atLeast32 then ./do-not-update-gems-baseruby-3.2.patch
else ./do-not-update-gems-baseruby.patch
)
2023-02-18 10:45:00 -05:00
++ ops ( ver . majMin = = " 3 . 0 " ) [
# Ruby 3.0 adds `-fdeclspec` to $CC instead of $CFLAGS. Fixed in later versions.
( fetchpatch {
url = " h t t p s : / / g i t h u b . c o m / r u b y / r u b y / c o m m i t / 0 a c c 0 5 c a f 7 5 1 8 c d 0 d 6 3 a b 0 2 b f a 0 3 6 4 5 5 a d d 0 2 3 4 6 . p a t c h " ;
2023-12-13 06:47:11 +11:00
hash = " s h a 2 5 6 - 4 3 h I 9 L 6 b X f e u j g m g K F V m i W h g 7 O X v s h P C C t Q 4 T x q K 1 z k = " ;
2023-02-18 10:45:00 -05:00
} )
2023-05-14 20:39:41 +02:00
]
2022-03-14 16:31:14 +09:00
++ ops ( ! atLeast30 && rubygemsSupport ) [
# We upgrade rubygems to a version that isn't compatible with the
# ruby 2.7 installer. Backport the upstream fix.
./rbinstall-new-rubygems-compat.patch
# Ruby prior to 3.0 has a bug the installer (tools/rbinstall.rb) but
# the resulting error was swallowed. Newer rubygems no longer swallows
# this error. We upgrade rubygems when rubygemsSupport is enabled, so
# we have to fix this bug to prevent the install step from failing.
# See https://github.com/ruby/ruby/pull/2930
2021-04-20 18:12:37 +09:00
( fetchpatch {
url = " h t t p s : / / g i t h u b . c o m / r u b y / r u b y / c o m m i t / 2 6 1 d 8 d d 2 0 a f d 2 6 f e b 0 5 f 0 0 a 5 6 0 a b d 9 9 2 2 7 2 6 9 c 1 c . p a t c h " ;
2023-12-13 06:47:11 +11:00
hash = " s h a 2 5 6 - H q f a e v M Y u I V O s d E r + C n j n U q r 2 I r H 5 f k W 2 u K z z o q I M X M = " ;
2022-03-14 16:31:14 +09:00
} )
2023-03-09 17:55:45 +09:00
]
++ ops atLeast31 [
# When using a baseruby, ruby always sets "libdir" to the build
# directory, which nix rejects due to a reference in to /build/ in
# the final product. Removing this reference doesn't seem to break
# anything and fixes cross compliation.
./dont-refer-to-build-dir.patch
2022-03-14 16:31:14 +09:00
] ;
2015-09-26 06:25:01 -07:00
2023-02-24 04:20:00 +00:00
cargoRoot = opString yjitSupport " y j i t " ;
cargoDeps = if yjitSupport then rustPlatform . fetchCargoTarball {
inherit src ;
sourceRoot = " ${ pname } - ${ version } / ${ cargoRoot } " ;
2023-12-13 06:47:11 +11:00
hash = cargoHash ;
2023-02-24 04:20:00 +00:00
} else null ;
2019-05-18 17:45:38 +00:00
postUnpack = opString rubygemsSupport ''
2019-05-19 15:15:07 +00:00
rm - rf $ sourceRoot / { lib , test } /rubygems *
cp - r $ { rubygems } /lib/rubygems * $ sourceRoot/lib
cp - r $ { rubygems } /test/rubygems $ sourceRoot/test
2015-09-26 06:25:01 -07:00
'' ;
2019-12-28 12:29:24 +01:00
postPatch = ''
2018-01-02 04:50:37 -05:00
sed - i configure . ac - e ' /config.guess/d '
2018-10-17 20:05:14 -05:00
cp - - remove-destination $ { config } /config.guess tool /
cp - - remove-destination $ { config } /config.sub tool /
2020-12-29 04:20:00 +00:00
'' + o p S t r i n g ( ! a t L e a s t 3 0 ) ''
2020-10-25 15:48:37 +01:00
# Make the build reproducible for ruby <= 2.7
# See https://github.com/ruby/io-console/commit/679a941d05d869f5e575730f6581c027203b7b26#diff-d8422f096931c58d4463e2489f62a228b0f24f0492950ba88c8c89a0d741cfe6
sed - i ext/io/console/io-console.gemspec - e ' /s \ .date/d '
2015-11-16 18:10:20 +01:00
'' ;
2015-09-26 06:25:01 -07:00
2021-11-22 10:14:27 -08:00
configureFlags = [
( lib . enableFeature ( ! stdenv . hostPlatform . isStatic ) " s h a r e d " )
( lib . enableFeature true " p t h r e a d " )
( lib . withFeatureAs true " s o n a m e " " r u b y - ${ version } " )
( lib . withFeatureAs useBaseRuby " b a s e r u b y " " ${ baseRuby } / b i n / r u b y " )
2023-03-08 16:50:57 +11:00
( lib . enableFeature dtraceSupport " d t r a c e " )
2021-11-22 10:14:27 -08:00
( lib . enableFeature jitSupport " j i t - s u p p o r t " )
2023-02-24 04:20:00 +00:00
( lib . enableFeature yjitSupport " y j i t " )
2021-11-22 10:14:27 -08:00
( lib . enableFeature docSupport " i n s t a l l - d o c " )
( lib . withFeature jemallocSupport " j e m a l l o c " )
( lib . withFeatureAs docSupport " r i d i r " " ${ placeholder " d e v d o c " } / s h a r e / r i " )
2022-06-18 07:21:38 +02:00
# ruby enables -O3 for gcc, however our compiler hardening wrapper
# overrides that by enabling `-O2` which is the minimum optimization
# needed for `_FORTIFY_SOURCE`.
] ++ lib . optional stdenv . cc . isGNU " C F L A G S = - O 3 " ++ [
2021-11-22 10:14:27 -08:00
] ++ ops stdenv . isDarwin [
# on darwin, we have /usr/include/tk.h -- so the configure script detects
# that tk is installed
" - - w i t h - o u t - e x t = t k "
# on yosemite, "generating encdb.h" will hang for a very long time without this flag
" - - w i t h - s e t j m p - t y p e = s e t j m p "
] ;
2015-09-26 06:25:01 -07:00
2019-05-06 00:38:52 +02:00
preConfigure = opString docSupport ''
2020-12-29 04:20:00 +00:00
# rdoc creates XDG_DATA_DIR (defaulting to $HOME/.local/share) even if
# it's not going to be used.
export HOME = $ TMPDIR
2019-05-06 00:38:52 +02:00
'' ;
Merge staging-next into master (#44009)
* substitute(): --subst-var was silently coercing to "" if the variable does not exist.
* libffi: simplify using `checkInputs`
* pythonPackges.hypothesis, pythonPackages.pytest: simpify dependency cycle fix
* utillinux: 2.32 -> 2.32.1
https://lkml.org/lkml/2018/7/16/532
* busybox: 1.29.0 -> 1.29.1
* bind: 9.12.1-P2 -> 9.12.2
https://ftp.isc.org/isc/bind9/9.12.2/RELEASE-NOTES-bind-9.12.2.html
* curl: 7.60.0 -> 7.61.0
* gvfs: make tests run, but disable
* ilmbase: disable tests on i686. Spooky!
* mdds: fix tests
* git: disable checks as tests are run in installcheck
* ruby: disable tests
* libcommuni: disable checks as tests are run in installcheck
* librdf: make tests run, but disable
* neon, neon_0_29: make tests run, but disable
* pciutils: 3.6.0 -> 3.6.1
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/pciutils/versions.
* mesa: more include fixes
mostly from void-linux (thanks!)
* npth: 1.5 -> 1.6
minor bump
* boost167: Add lockfree next_prior patch
* stdenv: cleanup darwin bootstrapping
Also gets rid of the full python and some of it's dependencies in the
stdenv build closure.
* Revert "pciutils: use standardized equivalent for canonicalize_file_name"
This reverts commit f8db20fb3ae382eba1ba2b160fe24739f43c0bd7.
Patching should no longer be needed with 3.6.1.
* binutils-wrapper: Try to avoid adding unnecessary -L flags
(cherry picked from commit f3758258b8895508475caf83e92bfb236a27ceb9)
Signed-off-by: Domen Kožar <domen@dev.si>
* libffi: don't check on darwin
libffi usages in stdenv broken darwin. We need to disable doCheck for that case.
* "rm $out/share/icons/hicolor/icon-theme.cache" -> hicolor-icon-theme setup-hook
* python.pkgs.pytest: setupHook to prevent creation of .pytest-cache folder, fixes #40273
When `py.test` was run with a folder as argument, it would not only
search for tests in that folder, but also create a .pytest-cache folder.
Not only is this state we don't want, but it was also causing
collisions.
* parity-ui: fix after merge
* python.pkgs.pytest-flake8: disable test, fix build
* Revert "meson: 0.46.1 -> 0.47.0"
With meson 0.47.0 (or 0.47.1, or git)
things are very wrong re:rpath handling
resulting in at best missing libs but
even corrupt binaries :(.
When we run patchelf it masks the problem
by removing obviously busted paths.
Which is probably why this wasn't noticed immediately.
Unfortunately the binary already
has a long series of paths scribbled
in a space intended for a much smaller string;
in my testing it was something like
lengths were 67 with 300+ written to it.
I think we've reported the relevant issues upstream,
but unfortunately it appears our patches
are what introduces the overwrite/corruption
(by no longer being correct in what they assume)
This doesn't look so bad to fix but it's
not something I can spend more time on
at the moment.
--
Interestingly the overwritten string data
(because it is scribbled past the bounds)
remains in the binary and is why we're suddenly
seeing unexpected references in various builds
-- notably this is is the reason we're
seeing the "extra-utils" breakage
that entirely crippled NixOS on master
(and probably on staging before?).
Fixes #43650.
This reverts commit 305ac4dade5758c58e8ab1666ad0197fd305828d.
(cherry picked from commit 273d68eff8f7b6cd4ebed3718e5078a0f43cb55d)
Signed-off-by: Domen Kožar <domen@dev.si>
2018-07-24 16:04:48 +02:00
# fails with "16993 tests, 2229489 assertions, 105 failures, 14 errors, 89 skips"
# mostly TZ- and patch-related tests
# TZ- failures are caused by nix sandboxing, I didn't investigate others
doCheck = false ;
2018-02-20 17:16:16 +01:00
preInstall = ''
# Ruby installs gems here itself now.
mkdir - pv " $ o u t / ${ passthru . gemPath } "
export GEM_HOME = " $ o u t / ${ passthru . gemPath } "
'' ;
2021-01-23 20:15:07 +07:00
installFlags = lib . optional docSupport " i n s t a l l - d o c " ;
2015-09-26 06:25:01 -07:00
# Bundler tries to create this directory
postInstall = ''
2021-04-01 04:20:00 +00:00
rbConfig = $ ( find $ out/lib/ruby - name rbconfig . rb )
2022-01-22 10:38:04 -08:00
# Remove references to the build environment from the closure
sed - i ' / ^ CONFIG \ [ " \( B A S E R U B Y \| S H E L L \| G R E P \| E G R E P \| M K D I R _ P \| M A K E D I R S \| I N S T A L L \) " \ ] /d ' $ rbConfig
2016-10-31 21:39:44 +00:00
# Remove unnecessary groff reference from runtime closure, since it's big
2021-04-01 04:20:00 +00:00
sed - i ' /NROFF/d ' $ rbConfig
2019-12-12 16:46:04 +01:00
$ {
2020-06-07 10:19:16 +03:00
lib . optionalString ( ! jitSupport ) ''
2019-12-12 16:38:55 +01:00
# Get rid of the CC runtime dependency
$ { removeReferencesTo } /bin/remove-references-to \
- t $ { stdenv . cc } \
2019-12-12 16:46:04 +01:00
$ out/lib/libruby *
2020-06-07 10:19:16 +03:00
$ { removeReferencesTo } /bin/remove-references-to \
- t $ { stdenv . cc } \
2021-04-01 04:20:00 +00:00
$ rbConfig
sed - i ' /CC_VERSION_MESSAGE/d ' $ rbConfig
2019-12-12 16:46:04 +01:00
''
}
2022-11-20 13:50:53 +01:00
# Allow to override compiler. This is important for cross compiling as
# we need to set a compiler that is different from the build one.
2023-02-02 18:39:51 +01:00
sed - i ' s/CONFIG \ [ " C C " \ ] = " \( . * \) " /CONFIG [ " C C " ] = if ENV [ " C C " ] . nil ? || ENV [ " C C " ] . empty ? then " \1 " else ENV [ " C C " ] end / ' " $ r b C o n f i g "
2022-11-20 13:50:53 +01:00
2022-03-14 16:31:14 +09:00
# Remove unnecessary external intermediate files created by gems
2022-11-09 13:52:49 -05:00
extMakefiles = $ ( find $ out / $ { passthru . gemPath } - name Makefile )
2022-03-14 16:31:14 +09:00
for makefile in $ extMakefiles ; do
make - C " $ ( d i r n a m e " $ makefile " ) " distclean
done
2023-02-24 04:20:00 +00:00
find " $ o u t / ${ passthru . gemPath } " \ ( - name gem_make . out - o - name mkmf . log \ ) - delete
2015-09-26 06:25:01 -07:00
# Bundler tries to create this directory
mkdir - p $ out/nix-support
cat > $ out/nix-support/setup-hook < < EOF
addGemPath ( ) {
addToSearchPath GEM_PATH \ $ 1 / $ { passthru . gemPath }
}
2019-05-06 00:38:52 +02:00
addRubyLibPath ( ) {
addToSearchPath RUBYLIB \ $ 1/lib/ruby/site_ruby
addToSearchPath RUBYLIB \ $ 1/lib/ruby/site_ruby / $ { ver . libDir }
2021-03-06 17:24:04 -05:00
addToSearchPath RUBYLIB \ $ 1/lib/ruby/site_ruby / $ { ver . libDir } / $ { stdenv . hostPlatform . system }
2019-05-06 00:38:52 +02:00
}
2015-09-26 06:25:01 -07:00
2017-08-10 18:22:07 -04:00
addEnvHooks " $ h o s t O f f s e t " addGemPath
2019-05-06 00:38:52 +02:00
addEnvHooks " $ h o s t O f f s e t " addRubyLibPath
2015-09-26 06:25:01 -07:00
EOF
2019-05-06 00:38:52 +02:00
'' + o p S t r i n g d o c S u p p o r t ''
# Prevent the docs from being included in the closure
sed - i " s | \$ ( D E S T D I R ) $ d e v d o c | \$ ( d a t a r o o t d i r ) / \$ ( R I _ B A S E _ N A M E ) | " $ rbConfig
sed - i " s | ' - - w i t h - r i d i r = $ d e v d o c / s h a r e / r i ' | | " $ rbConfig
# Add rbconfig shim so ri can find docs
mkdir - p $ devdoc/lib/ruby/site_ruby
cp $ { ./rbconfig.rb } $ devdoc/lib/ruby/site_ruby/rbconfig.rb
2021-09-17 22:12:30 -07:00
'' + o p S t r i n g u s e B a s e R u b y ''
2015-09-26 06:25:01 -07:00
# Prevent the baseruby from being included in the closure.
2021-12-22 19:25:41 -08:00
$ { removeReferencesTo } /bin/remove-references-to \
- t $ { baseRuby } \
$ rbConfig $ out/lib/libruby *
2015-09-26 06:25:01 -07:00
'' ;
2023-02-02 18:39:51 +01:00
installCheckPhase = ''
overriden_cc = $ ( CC = foo $ out/bin/ruby - rrbconfig - e ' puts RbConfig::CONFIG [ " C C " ] ' )
if [ [ " $ o v e r r i d e n _ c c " != " f o o " ] ] ; then
echo " C C c a n n o t b e o v e r w r i t t e n : $ o v e r r i d e n _ c c ! = f o o " > & 2
false
fi
fallback_cc = $ ( unset CC ; $ out/bin/ruby - rrbconfig - e ' puts RbConfig::CONFIG [ " C C " ] ' )
if [ [ " $ f a l l b a c k _ c c " != " $ C C " ] ] ; then
echo " C C = ' $ f a l l b a c k _ c c ' s h o u l d b e ' $ C C ' b y d e f a u l t " > & 2
false
fi
'' ;
doInstallCheck = true ;
2021-09-17 22:12:30 -07:00
disallowedRequisites = op ( ! jitSupport ) stdenv . cc . cc
++ op useBaseRuby baseRuby ;
2020-11-12 11:29:22 +01:00
2021-01-23 20:15:07 +07:00
meta = with lib ; {
2022-08-12 04:20:00 +00:00
description = " A n o b j e c t - o r i e n t e d l a n g u a g e f o r q u i c k a n d e a s y p r o g r a m m i n g " ;
homepage = " h t t p s : / / w w w . r u b y - l a n g . o r g / " ;
2017-09-08 12:07:39 +08:00
license = licenses . ruby ;
2020-10-03 04:20:00 +00:00
maintainers = with maintainers ; [ vrthra manveru marsam ] ;
2017-09-08 12:07:39 +08:00
platforms = platforms . all ;
2023-05-09 15:17:01 +02:00
knownVulnerabilities = op ( lib . versionOlder ver . majMin " 3 . 0 " ) " T h i s R u b y r e l e a s e h a s r e a c h e d i t s e n d o f l i f e . S e e h t t p s : / / w w w . r u b y - l a n g . o r g / e n / d o w n l o a d s / b r a n c h e s / . " ;
2015-09-26 06:25:01 -07:00
} ;
passthru = rec {
2016-09-20 17:41:16 +01:00
version = ver ;
2015-09-26 06:25:01 -07:00
rubyEngine = " r u b y " ;
2016-09-20 17:41:16 +01:00
libPath = " l i b / ${ rubyEngine } / ${ ver . libDir } " ;
gemPath = " l i b / ${ rubyEngine } / g e m s / ${ ver . libDir } " ;
2016-04-17 04:52:43 +03:00
devEnv = import ./dev.nix {
2016-03-01 20:00:54 +00:00
inherit buildEnv bundler bundix ;
ruby = self ;
} ;
2016-09-20 17:41:16 +01:00
2023-03-07 04:20:00 +00:00
inherit rubygems ;
2019-05-18 17:45:38 +00:00
inherit ( import ../../ruby-modules/with-packages {
2023-01-11 10:20:40 -05:00
inherit lib stdenv makeBinaryWrapper buildRubyGem buildEnv ;
2019-05-18 17:45:38 +00:00
gemConfig = defaultGemConfig ;
ruby = self ;
2022-12-09 12:19:26 -05:00
} ) withPackages buildGems gems ;
2019-05-18 17:45:38 +00:00
2021-09-17 22:12:30 -07:00
} // lib . optionalAttrs useBaseRuby {
inherit baseRuby ;
2015-09-26 06:25:01 -07:00
} ;
}
) args ; in self ;
in {
2022-07-04 11:57:06 +02:00
mkRubyVersion = rubyVersion ;
mkRuby = generic ;
2021-12-25 04:20:00 +00:00
ruby_3_1 = generic {
2023-03-30 04:20:00 +00:00
version = rubyVersion " 3 " " 1 " " 4 " " " ;
2023-12-13 06:47:11 +11:00
hash = " s h a 2 5 6 - o 9 V Y e a D f q x 1 x Q f 3 x D S K g f b + O X N x E F d o b 3 g Y S f V z D x 7 Y = " ;
2021-12-25 04:20:00 +00:00
} ;
2023-02-24 04:20:00 +00:00
ruby_3_2 = generic {
2023-03-30 04:20:00 +00:00
version = rubyVersion " 3 " " 2 " " 2 " " " ;
2023-12-13 06:47:11 +11:00
hash = " s h a 2 5 6 - l s V 1 W I c a Z 0 j e W 8 n y d O k / S 1 q t B s 2 P N 7 7 6 D o 2 U 5 7 i k I 7 w = " ;
cargoHash = " s h a 2 5 6 - 6 d u 7 R J o 0 D H + e Y M O o h 3 L 3 1 F 3 a q f R 5 + i G 1 i K a u S V 1 u N c Q = " ;
2023-02-24 04:20:00 +00:00
} ;
2023-06-16 17:15:23 +10:00
ruby_3_3 = generic {
2023-12-25 04:20:00 +00:00
version = rubyVersion " 3 " " 3 " " 0 " " " ;
hash = " s h a 2 5 6 - l l G I F N m D K + z p K o V B W o G d S J O z B 9 t Z I a 4 f D 3 U a m o m l a 3 0 = " ;
2023-12-13 06:47:11 +11:00
cargoHash = " s h a 2 5 6 - G e e l T M R F I y v z 1 Q S 2 L + Q 3 K A n y Q y 7 j c 0 e j h x 3 T d E F V E b k = " ;
2023-06-16 17:15:23 +10:00
} ;
2015-09-26 06:25:01 -07:00
}