Files
nixpkgs/pkgs/development/interpreters/ruby/default.nix
T

228 lines
7.7 KiB
Nix
Raw Normal View History

2017-10-29 15:51:16 -04:00
{ stdenv, buildPackages, lib
, fetchurl, fetchpatch, fetchFromSavannah, fetchFromGitHub
2015-09-26 06:25:01 -07:00
, zlib, openssl, gdbm, ncurses, readline, groff, libyaml, libffi, autoreconfHook, bison
2018-05-04 19:56:38 +02:00
, autoconf, libiconv, libobjc, libunwind, Foundation
, buildEnv, bundler, bundix
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
patchSet = import ./rvm-patchsets.nix { inherit fetchFromGitHub; };
config = import ./config.nix { inherit fetchFromSavannah; };
rubygemsSrc = import ./rubygems-src.nix { inherit fetchurl; };
2016-09-20 17:41:16 +01:00
rubygemsPatch = fetchpatch {
url = "https://github.com/zimbatm/rubygems/compare/v2.6.6...v2.6.6-nix.patch";
sha256 = "0297rdb1m6v75q8665ry9id1s74p9305dv32l95ssf198liaihhd";
};
unpackdir = obj:
lib.removeSuffix ".tgz"
(lib.removeSuffix ".tar.gz" obj.name);
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; };
2017-10-29 15:51:16 -04:00
# Needed during postInstall
buildRuby =
if stdenv.hostPlatform == stdenv.buildPlatform
then "$out/bin/ruby"
else "${buildPackages.ruby}/bin/ruby";
2016-09-20 17:41:16 +01:00
generic = { version, sha256 }: let
ver = version;
tag = ver.gitTag;
2018-01-02 04:50:37 -05:00
isRuby25 = ver.majMin == "2.5";
2015-09-26 06:25:01 -07:00
baseruby = self.override { useRailsExpress = false; };
self = lib.makeOverridable (
2018-05-04 19:56:38 +02:00
{ stdenv, buildPackages, lib
2017-10-29 15:51:16 -04:00
, fetchurl, fetchpatch, fetchFromSavannah, fetchFromGitHub
2015-09-26 06:25:01 -07:00
, useRailsExpress ? true
, zlib, zlibSupport ? true
, openssl, opensslSupport ? true
, gdbm, gdbmSupport ? true
, ncurses, readline, cursesSupport ? true
, groff, docSupport ? false
, libyaml, yamlSupport ? true
, libffi, fiddleSupport ? true
, autoreconfHook, bison, autoconf
2018-05-04 19:56:38 +02:00
, buildEnv, bundler, bundix
, libiconv, libobjc, libunwind, Foundation
2015-09-26 06:25:01 -07:00
}:
let rubySrc =
if useRailsExpress then fetchFromGitHub {
2015-09-26 06:25:01 -07:00
owner = "ruby";
repo = "ruby";
rev = tag;
sha256 = sha256.git;
} else fetchurl {
2016-09-20 17:41:16 +01:00
url = "http://cache.ruby-lang.org/pub/ruby/${ver.majMin}/ruby-${ver}.tar.gz";
2015-09-26 06:25:01 -07:00
sha256 = sha256.src;
};
in
stdenv.mkDerivation rec {
name = "ruby-${version}";
srcs = [ rubySrc rubygemsSrc ];
sourceRoot =
if useRailsExpress then
rubySrc.name
else
unpackdir rubySrc;
2015-09-26 06:25:01 -07:00
# Have `configure' avoid `/usr/bin/nroff' in non-chroot builds.
NROFF = if docSupport then "${groff}/bin/nroff" else null;
2015-09-26 06:25:01 -07:00
2017-10-29 15:51:16 -04:00
nativeBuildInputs =
ops useRailsExpress [ autoreconfHook bison ]
++ ops (stdenv.buildPlatform != stdenv.hostPlatform) [
buildPackages.ruby
];
buildInputs =
(op fiddleSupport libffi)
2015-09-26 06:25:01 -07:00
++ (ops cursesSupport [ ncurses readline ])
++ (op docSupport groff)
++ (op zlibSupport zlib)
++ (op opensslSupport openssl)
++ (op gdbmSupport gdbm)
++ (op yamlSupport libyaml)
2018-01-02 04:50:37 -05:00
++ (op isRuby25 autoconf)
2015-09-26 06:25:01 -07: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
2018-05-04 19:56:38 +02:00
++ op (!cursesSupport && stdenv.isDarwin) readline
++ ops stdenv.isDarwin [ libiconv libobjc libunwind Foundation ];
2015-09-26 06:25:01 -07:00
enableParallelBuilding = true;
patches =
(import ./patchsets.nix {
2016-09-20 17:41:16 +01:00
inherit patchSet useRailsExpress ops;
patchLevel = ver.patchLevel;
})."${ver.majMinTiny}";
2015-09-26 06:25:01 -07:00
postUnpack = ''
cp -r ${unpackdir rubygemsSrc} ${sourceRoot}/rubygems
2016-09-20 17:41:16 +01:00
pushd ${sourceRoot}/rubygems
patch -p1 < ${rubygemsPatch}
popd
2015-09-26 06:25:01 -07:00
'';
2018-02-14 09:53:54 +00:00
postPatch = if isRuby25 then ''
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/
2018-01-02 04:50:37 -05:00
''
2015-11-16 18:10:20 +01:00
else opString useRailsExpress ''
2015-09-26 06:25:01 -07:00
sed -i configure.in -e '/config.guess/d'
cp ${config}/config.guess tool/
cp ${config}/config.sub tool/
2015-11-16 18:10:20 +01:00
'';
2015-09-26 06:25:01 -07:00
configureFlags = ["--enable-shared" "--enable-pthread"]
++ op useRailsExpress "--with-baseruby=${baseruby}/bin/ruby"
2016-12-27 18:55:10 +01:00
++ op (!docSupport) "--disable-install-doc"
2015-09-26 06:25:01 -07:00
++ ops stdenv.isDarwin [
# on darwin, we have /usr/include/tk.h -- so the configure script detects
# that tk is installed
"--with-out-ext=tk"
# on yosemite, "generating encdb.h" will hang for a very long time without this flag
"--with-setjmp-type=setjmp"
2017-10-29 15:51:16 -04:00
]
++ op (stdenv.hostPlatform != stdenv.buildPlatform)
"--with-baseruby=${buildRuby}";
2015-09-26 06:25:01 -07:00
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 "$out/${passthru.gemPath}"
export GEM_HOME="$out/${passthru.gemPath}"
'';
2015-09-26 06:25:01 -07:00
installFlags = stdenv.lib.optionalString docSupport "install-doc";
# Bundler tries to create this directory
postInstall = ''
# Update rubygems
pushd rubygems
2017-10-29 15:51:16 -04:00
${buildRuby} setup.rb
popd
# Remove unnecessary groff reference from runtime closure, since it's big
sed -i '/NROFF/d' $out/lib/ruby/*/*/rbconfig.rb
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}
}
2017-08-10 18:22:07 -04:00
addEnvHooks "$hostOffset" addGemPath
2015-09-26 06:25:01 -07:00
EOF
'' + opString useRailsExpress ''
rbConfig=$(find $out/lib/ruby -name rbconfig.rb)
# Prevent the baseruby from being included in the closure.
sed -i '/^ CONFIG\["BASERUBY"\]/d' $rbConfig
sed -i "s|'--with-baseruby=${baseruby}/bin/ruby'||" $rbConfig
'';
2017-09-08 12:07:39 +08:00
meta = with stdenv.lib; {
2015-09-26 06:25:01 -07:00
description = "The Ruby language";
2017-09-08 12:07:39 +08:00
homepage = http://www.ruby-lang.org/en/;
license = licenses.ruby;
maintainers = with maintainers; [ vrthra manveru ];
platforms = platforms.all;
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 = "ruby";
baseRuby = baseruby;
2016-09-20 17:41:16 +01:00
libPath = "lib/${rubyEngine}/${ver.libDir}";
gemPath = "lib/${rubyEngine}/gems/${ver.libDir}";
2016-04-17 04:52:43 +03:00
devEnv = import ./dev.nix {
inherit buildEnv bundler bundix;
ruby = self;
};
2016-09-20 17:41:16 +01:00
# deprecated 2016-09-21
majorVersion = ver.major;
minorVersion = ver.minor;
teenyVersion = ver.tiny;
patchLevel = ver.patchLevel;
2015-09-26 06:25:01 -07:00
};
}
) args; in self;
in {
2018-02-14 09:53:54 +00:00
ruby_2_3 = generic {
2018-10-17 19:44:15 -05:00
version = rubyVersion "2" "3" "8" "";
2016-01-25 17:51:15 +01:00
sha256 = {
2018-10-17 19:44:15 -05:00
src = "1gwsqmrhpx1wanrfvrsj3j76rv888zh7jag2si2r14qf8ihns0dm";
git = "0158fg1sx6l6applbq0831kl8kzx5jacfl9lfg0shfzicmjlys3f";
2016-01-25 17:51:15 +01:00
};
};
2016-12-27 18:55:10 +01:00
2018-02-14 09:53:54 +00:00
ruby_2_4 = generic {
2018-10-17 19:41:18 -05:00
version = rubyVersion "2" "4" "5" "";
2016-12-27 18:55:10 +01:00
sha256 = {
2018-10-17 19:41:18 -05:00
src = "162izk7c72y73vmdgcbsh8kqihrbm65xvp53r1s139pzwqd78dv7";
git = "181za4h6bd2bkyzyknxc18i5gq0pnqag60ybc17p0ixw3q7pdj43";
2016-12-27 18:55:10 +01:00
};
};
2018-01-02 04:50:37 -05:00
2018-02-14 09:53:54 +00:00
ruby_2_5 = generic {
2018-10-17 20:05:14 -05:00
version = rubyVersion "2" "5" "2" "";
2018-01-02 04:50:37 -05:00
sha256 = {
2018-10-17 20:05:14 -05:00
src = "0wgl1697sdiqh6ksgv40v627jp5557j1zi462krwnzhc9bk408xk";
git = "00xy323q2f2v102hfgsj9k20vggvvmyhd6byfhbc1qwz2vyrvc47";
2018-01-02 04:50:37 -05:00
};
};
2015-09-26 06:25:01 -07:00
}