2020-04-24 23:36:52 +00:00
{ stdenv , buildPackages , lib
, fetchurl , fetchpatch , fetchFromSavannah , fetchFromGitHub
2021-02-17 17:02:09 +00:00
, zlib , openssl , gdbm , ncurses , readline , groff , libyaml , libffi , jemalloc , autoreconfHook , bison
2020-04-24 23:36:52 +00:00
, autoconf , libiconv , libobjc , libunwind , Foundation
, buildEnv , bundler , bundix
, makeWrapper , buildRubyGem , defaultGemConfig , removeReferencesTo
} @ args :
let
op = lib . optional ;
ops = lib . optionals ;
opString = lib . optionalString ;
patchSet = import ./rvm-patchsets.nix { inherit fetchFromGitHub ; } ;
config = import ./config.nix { inherit fetchFromSavannah ; } ;
2021-07-17 21:14:59 +00:00
rubygems = import ./rubygems { inherit stdenv lib fetchurl ; } ;
2020-04-24 23:36:52 +00:00
# Contains the ruby version heuristics
rubyVersion = import ./ruby-version.nix { inherit lib ; } ;
generic = { version , sha256 }: let
ver = version ;
tag = ver . gitTag ;
2021-03-19 17:17:44 +00:00
atLeast30 = lib . versionAtLeast ver . majMin " 3 . 0 " ;
2020-04-24 23:36:52 +00:00
self = lib . makeOverridable (
{ stdenv , buildPackages , lib
, fetchurl , fetchpatch , fetchFromSavannah , fetchFromGitHub
, useRailsExpress ? true
, rubygemsSupport ? true
, zlib , zlibSupport ? true
, openssl , opensslSupport ? true
, gdbm , gdbmSupport ? true
, ncurses , readline , cursesSupport ? true
, groff , docSupport ? true
, libyaml , yamlSupport ? true
, libffi , fiddleSupport ? true
2021-02-17 17:02:09 +00:00
, jemalloc , jemallocSupport ? false
2020-11-19 00:13:47 +00:00
# By default, ruby has 3 observed references to stdenv.cc:
#
# - If you run:
# ruby -e "puts RbConfig::CONFIG['configure_args']"
# - In:
2021-03-15 08:37:03 +00:00
# $out/${passthru.libPath}/${stdenv.hostPlatform.system}/rbconfig.rb
2020-11-19 00:13:47 +00: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
2021-05-20 23:08:51 +00:00
, removeReferencesTo , jitSupport ? false
2020-04-24 23:36:52 +00:00
, autoreconfHook , bison , autoconf
, buildEnv , bundler , bundix
, libiconv , libobjc , libunwind , Foundation
, makeWrapper , buildRubyGem , defaultGemConfig
2022-01-13 20:06:32 +00:00
, baseRuby ? buildPackages . ruby . override {
useRailsExpress = false ;
docSupport = false ;
rubygemsSupport = false ;
}
, useBaseRuby ? stdenv . hostPlatform != stdenv . buildPlatform || useRailsExpress
2020-04-24 23:36:52 +00:00
} :
stdenv . mkDerivation rec {
pname = " r u b y " ;
inherit version ;
src = if useRailsExpress then fetchFromGitHub {
owner = " r u b y " ;
repo = " r u b y " ;
rev = tag ;
sha256 = sha256 . git ;
} else fetchurl {
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 " ;
sha256 = sha256 . src ;
} ;
# Have `configure' avoid `/usr/bin/nroff' in non-chroot builds.
NROFF = if docSupport then " ${ groff } / b i n / n r o f f " else null ;
outputs = [ " o u t " ] ++ lib . optional docSupport " d e v d o c " ;
nativeBuildInputs = [ autoreconfHook bison ]
++ ( op docSupport groff )
2022-01-13 20:06:32 +00:00
++ op useBaseRuby baseRuby ;
2020-04-24 23:36:52 +00:00
buildInputs = [ autoconf ]
++ ( op fiddleSupport libffi )
++ ( ops cursesSupport [ ncurses readline ] )
++ ( op zlibSupport zlib )
++ ( op opensslSupport openssl )
++ ( op gdbmSupport gdbm )
++ ( op yamlSupport libyaml )
2021-02-17 17:02:09 +00:00
++ ( op jemallocSupport jemalloc )
2020-04-24 23:36:52 +00:00
# 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
++ op ( ! cursesSupport && stdenv . isDarwin ) readline
++ ops stdenv . isDarwin [ libiconv libobjc libunwind Foundation ] ;
enableParallelBuilding = true ;
patches =
( import ./patchsets.nix {
inherit patchSet useRailsExpress ops fetchpatch ;
patchLevel = ver . patchLevel ;
2021-03-19 17:17:44 +00:00
} ) . ${ ver . majMinTiny }
2022-01-13 20:06:32 +00:00
++ op ( lib . versionOlder ver . majMin " 3 . 1 " ) ./do-not-regenerate-revision.h.patch
2021-05-20 23:08:51 +00:00
++ op ( atLeast30 && useRailsExpress ) ./do-not-update-gems-baseruby.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
++ op ( ! atLeast30 && rubygemsSupport )
( 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 " ;
sha256 = " 0 w r i i 2 5 c x c z 2 v 8 b g k r f 7 i b c a n j l x w c l z h a y i n 5 7 8 b f 0 q y d x d m 9 q y " ;
} ) ;
2020-04-24 23:36:52 +00:00
postUnpack = opString rubygemsSupport ''
rm - rf $ sourceRoot / { lib , test } /rubygems *
cp - r $ { rubygems } /lib/rubygems * $ sourceRoot/lib
cp - r $ { rubygems } /test/rubygems $ sourceRoot/test
'' ;
postPatch = ''
sed - i configure . ac - e ' /config.guess/d '
cp - - remove-destination $ { config } /config.guess tool /
cp - - remove-destination $ { config } /config.sub tool /
2021-03-19 17:17:44 +00:00
'' + o p S t r i n g ( ! a t L e a s t 3 0 ) ''
2020-11-12 09:05:59 +00: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 '
2020-04-24 23:36:52 +00:00
'' ;
2022-01-13 20:06:32 +00: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 " )
( lib . enableFeature jitSupport " j i t - s u p p o r t " )
( 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 " )
] ++ 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 "
] ;
2020-04-24 23:36:52 +00:00
preConfigure = opString docSupport ''
2021-03-19 17:17:44 +00:00
# rdoc creates XDG_DATA_DIR (defaulting to $HOME/.local/share) even if
# it's not going to be used.
export HOME = $ TMPDIR
2020-04-24 23:36:52 +00: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 ;
preInstall = ''
# Ruby installs gems here itself now.
mkdir - pv " $ o u t / ${ passthru . gemPath } "
export GEM_HOME = " $ o u t / ${ passthru . gemPath } "
'' ;
2021-02-05 17:12:51 +00:00
installFlags = lib . optional docSupport " i n s t a l l - d o c " ;
2020-04-24 23:36:52 +00:00
# Bundler tries to create this directory
postInstall = ''
2021-05-20 23:08:51 +00:00
rbConfig = $ ( find $ out/lib/ruby - name rbconfig . rb )
2022-02-10 20:34:41 +00: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
2020-04-24 23:36:52 +00:00
# Remove unnecessary groff reference from runtime closure, since it's big
2021-05-20 23:08:51 +00:00
sed - i ' /NROFF/d ' $ rbConfig
2020-04-24 23:36:52 +00:00
$ {
2020-11-19 00:13:47 +00:00
lib . optionalString ( ! jitSupport ) ''
2020-04-24 23:36:52 +00:00
# Get rid of the CC runtime dependency
$ { removeReferencesTo } /bin/remove-references-to \
- t $ { stdenv . cc } \
$ out/lib/libruby *
2020-11-19 00:13:47 +00:00
$ { removeReferencesTo } /bin/remove-references-to \
- t $ { stdenv . cc } \
2021-05-20 23:08:51 +00:00
$ rbConfig
sed - i ' /CC_VERSION_MESSAGE/d ' $ rbConfig
2020-04-24 23:36:52 +00: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 }
}
addRubyLibPath ( ) {
addToSearchPath RUBYLIB \ $ 1/lib/ruby/site_ruby
addToSearchPath RUBYLIB \ $ 1/lib/ruby/site_ruby / $ { ver . libDir }
2021-03-15 08:37:03 +00:00
addToSearchPath RUBYLIB \ $ 1/lib/ruby/site_ruby / $ { ver . libDir } / $ { stdenv . hostPlatform . system }
2020-04-24 23:36:52 +00:00
}
addEnvHooks " $ h o s t O f f s e t " addGemPath
addEnvHooks " $ h o s t O f f s e t " addRubyLibPath
EOF
'' + 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
2022-01-13 20:06:32 +00:00
'' + o p S t r i n g u s e B a s e R u b y ''
2020-04-24 23:36:52 +00:00
# Prevent the baseruby from being included in the closure.
2022-01-13 20:06:32 +00:00
$ { removeReferencesTo } /bin/remove-references-to \
- t $ { baseRuby } \
$ rbConfig $ out/lib/libruby *
2020-04-24 23:36:52 +00:00
'' ;
2022-01-13 20:06:32 +00:00
disallowedRequisites = op ( ! jitSupport ) stdenv . cc . cc
++ op useBaseRuby baseRuby ;
2020-11-21 19:51:51 +00:00
2021-02-05 17:12:51 +00:00
meta = with lib ; {
2020-04-24 23:36:52 +00:00
description = " T h e R u b y l a n g u a g e " ;
homepage = " h t t p : / / w w w . r u b y - l a n g . o r g / e n / " ;
license = licenses . ruby ;
2020-10-07 09:15:18 +00:00
maintainers = with maintainers ; [ vrthra manveru marsam ] ;
2020-04-24 23:36:52 +00:00
platforms = platforms . all ;
} ;
passthru = rec {
version = ver ;
rubyEngine = " r u b y " ;
libPath = " l i b / ${ rubyEngine } / ${ ver . libDir } " ;
gemPath = " l i b / ${ rubyEngine } / g e m s / ${ ver . libDir } " ;
devEnv = import ./dev.nix {
inherit buildEnv bundler bundix ;
ruby = self ;
} ;
inherit ( import ../../ruby-modules/with-packages {
inherit lib stdenv makeWrapper buildRubyGem buildEnv ;
gemConfig = defaultGemConfig ;
ruby = self ;
} ) withPackages gems ;
# deprecated 2016-09-21
majorVersion = ver . major ;
minorVersion = ver . minor ;
teenyVersion = ver . tiny ;
patchLevel = ver . patchLevel ;
2022-01-13 20:06:32 +00:00
} // lib . optionalAttrs useBaseRuby {
inherit baseRuby ;
2020-04-24 23:36:52 +00:00
} ;
}
) args ; in self ;
in {
ruby_2_7 = generic {
2021-12-06 16:07:01 +00:00
version = rubyVersion " 2 " " 7 " " 5 " " " ;
2020-04-24 23:36:52 +00:00
sha256 = {
2021-12-06 16:07:01 +00:00
src = " 1 w c 1 h w m z 4 m 6 i q l m q a g 8 l i y l d 9 1 7 p 6 a 8 d v n h n p d 1 v 8 d 8 j l 8 0 b j m 9 7 " ;
git = " 1 6 5 6 5 f y l 7 1 4 1 h r 6 q 6 d 7 4 m y h s z 4 6 l v g a m 8 i f n a c s h i 6 8 v z i b w j b b h " ;
2020-04-24 23:36:52 +00:00
} ;
} ;
2021-03-19 17:17:44 +00:00
ruby_3_0 = generic {
2021-12-06 16:07:01 +00:00
version = rubyVersion " 3 " " 0 " " 3 " " " ;
2021-03-19 17:17:44 +00:00
sha256 = {
2021-12-06 16:07:01 +00:00
src = " 1 b 4 j 3 9 z y y v d k f 1 a x 2 c 6 q f a 4 0 b 4 m x f k r 8 7 z g h h w 1 9 f m n z n 8 f 8 d 1 i m " ;
git = " 1 q 1 9 w 5 i 1 j k f x n 7 q q 6 f 9 v 9 n g a x 9 h 5 2 g x w i j k 7 h p 3 1 2 d x 6 a m w r k a i m " ;
2021-03-19 17:17:44 +00:00
} ;
} ;
2022-01-13 20:06:32 +00:00
ruby_3_1 = generic {
version = rubyVersion " 3 " " 1 " " 0 " " " ;
sha256 = {
src = " s h a 2 5 6 - U K B Q T G 7 c t N Y c 5 r j P 2 9 2 q l X B x l f q w 7 N e 1 6 S Z U s q l B K F Q = " ;
git = " s h a 2 5 6 - T c s o W Y + z V Z e u e 1 / y p V 1 L 0 W E R p 1 U V K 3 5 W t V t Y P Y i J h 4 c = " ;
} ;
} ;
2020-04-24 23:36:52 +00:00
}