2017-10-29 15:51:16 -04:00
|
|
|
{
|
|
|
|
stdenv,
|
|
|
|
buildPackages,
|
|
|
|
lib,
|
2024-05-26 19:08:40 +01:00
|
|
|
fetchurl,
|
|
|
|
fetchpatch,
|
|
|
|
fetchFromSavannah,
|
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,
|
|
|
|
libunwind,
|
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,
|
2023-11-26 23:27:55 +01:00
|
|
|
openssl,
|
2023-03-08 16:50:57 +11:00
|
|
|
linuxPackages,
|
|
|
|
libsystemtap,
|
2024-07-12 18:27:25 +02:00
|
|
|
gitUpdater,
|
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; };
|
2024-07-12 18:27:25 +02:00
|
|
|
rubygems = import ./rubygems {
|
|
|
|
inherit
|
|
|
|
stdenv
|
|
|
|
lib
|
|
|
|
fetchurl
|
|
|
|
gitUpdater
|
|
|
|
;
|
|
|
|
};
|
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;
|
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)
|
|
|
|
);
|
2024-02-13 14:34:09 +08:00
|
|
|
rubyDrv = lib.makeOverridable (
|
2018-05-04 19:56:38 +02:00
|
|
|
{
|
|
|
|
stdenv,
|
|
|
|
buildPackages,
|
|
|
|
lib,
|
2024-05-26 19:08:40 +01:00
|
|
|
fetchurl,
|
|
|
|
fetchpatch,
|
2015-09-26 06:25:01 -07:00
|
|
|
fetchFromSavannah,
|
|
|
|
rubygemsSupport ? true,
|
|
|
|
zlib,
|
|
|
|
zlibSupport ? true,
|
2021-02-12 21:29:10 +01:00
|
|
|
openssl,
|
|
|
|
opensslSupport ? true,
|
2023-03-08 16:50:57 +11:00
|
|
|
gdbm,
|
|
|
|
gdbmSupport ? true,
|
|
|
|
ncurses,
|
|
|
|
readline,
|
|
|
|
cursesSupport ? true,
|
2024-12-10 20:23:58 +01:00
|
|
|
groff,
|
2020-06-07 10:19:16 +03:00
|
|
|
docSupport ? true,
|
|
|
|
libyaml,
|
2023-02-24 04:20:00 +00:00
|
|
|
yamlSupport ? true,
|
2024-12-10 20:23:58 +01:00
|
|
|
libffi,
|
2023-02-24 04:20:00 +00:00
|
|
|
fiddleSupport ? true,
|
2024-12-10 20:23:58 +01:00
|
|
|
jemalloc,
|
2023-02-24 04:20:00 +00:00
|
|
|
jemallocSupport ? false,
|
2018-05-04 19:56:38 +02:00
|
|
|
linuxPackages,
|
2023-03-30 04:20:00 +00:00
|
|
|
systemtap ? linuxPackages.systemtap,
|
2023-03-08 16:50:57 +11:00
|
|
|
libsystemtap,
|
2021-09-17 22:12:30 -07:00
|
|
|
dtraceSupport ? false,
|
2023-02-24 04:20:00 +00:00
|
|
|
# By default, ruby has 3 observed references to stdenv.cc:
|
2024-12-10 20:23:58 +01:00
|
|
|
#
|
2020-06-07 10:19:16 +03:00
|
|
|
# - If you run:
|
|
|
|
# ruby -e "puts RbConfig::CONFIG['configure_args']"
|
2024-12-10 20:23:58 +01:00
|
|
|
# - In:
|
2023-02-24 04:20:00 +00:00
|
|
|
# $out/${passthru.libPath}/${stdenv.hostPlatform.system}/rbconfig.rb
|
2024-02-13 14:34:09 +08:00
|
|
|
# Or (usually):
|
2018-12-25 14:25:45 -05:00
|
|
|
# $(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
|
|
|
|
removeReferencesTo,
|
2018-02-13 14:11:17 -06:00
|
|
|
jitSupport ? yjitSupport,
|
2024-12-10 20:23:58 +01:00
|
|
|
cargo,
|
2019-05-06 00:38:52 +02:00
|
|
|
rustPlatform,
|
2024-12-10 20:23:58 +01:00
|
|
|
rustc,
|
2019-05-06 00:38:52 +02:00
|
|
|
yjitSupport ? yjitSupported,
|
2023-10-03 03:29:45 +03:00
|
|
|
autoreconfHook,
|
|
|
|
bison,
|
|
|
|
autoconf,
|
|
|
|
buildEnv,
|
|
|
|
bundler,
|
|
|
|
bundix,
|
2018-05-04 19:56:38 +02:00
|
|
|
libiconv,
|
|
|
|
libunwind,
|
2023-10-03 03:29:45 +03:00
|
|
|
makeBinaryWrapper,
|
|
|
|
buildRubyGem,
|
2023-03-08 16:50:57 +11:00
|
|
|
defaultGemConfig,
|
2021-09-17 22:12:30 -07:00
|
|
|
baseRuby ? buildPackages.ruby.override {
|
2019-12-28 12:29:24 +01:00
|
|
|
docSupport = false;
|
2015-09-26 06:25:01 -07:00
|
|
|
rubygemsSupport = false;
|
|
|
|
},
|
2018-05-04 19:56:38 +02:00
|
|
|
useBaseRuby ? stdenv.hostPlatform != stdenv.buildPlatform,
|
|
|
|
gitUpdater,
|
2024-12-10 20:23:58 +01:00
|
|
|
}:
|
2018-05-04 19:56:38 +02:00
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
2019-08-13 21:52:01 +00:00
|
|
|
pname = "ruby";
|
|
|
|
inherit version;
|
2024-12-10 20:23:58 +01:00
|
|
|
|
2018-05-04 19:56:38 +02:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://cache.ruby-lang.org/pub/ruby/${ver.majMin}/ruby-${ver}.tar.gz";
|
2023-12-13 06:47:11 +11:00
|
|
|
inherit hash;
|
2024-12-10 20:23:58 +01:00
|
|
|
};
|
|
|
|
|
2018-05-04 19:56:38 +02:00
|
|
|
# Have `configure' avoid `/usr/bin/nroff' in non-chroot builds.
|
2022-06-06 13:13:32 +09:00
|
|
|
NROFF = if docSupport then "${groff}/bin/nroff" else null;
|
2024-12-10 20:23:58 +01:00
|
|
|
|
2022-06-06 13:13:32 +09:00
|
|
|
outputs = [ "out" ] ++ lib.optional docSupport "devdoc";
|
2024-12-10 20:23:58 +01:00
|
|
|
|
2015-09-26 06:25:01 -07:00
|
|
|
strictDeps = true;
|
2024-12-10 20:23:58 +01:00
|
|
|
|
2023-03-16 08:01:21 +00:00
|
|
|
nativeBuildInputs =
|
2024-12-10 20:23:58 +01:00
|
|
|
[
|
2023-03-16 08:01:21 +00:00
|
|
|
autoreconfHook
|
2024-12-10 20:23:58 +01:00
|
|
|
bison
|
2023-03-16 08:01:21 +00:00
|
|
|
removeReferencesTo
|
2024-12-10 20:23:58 +01:00
|
|
|
]
|
2023-03-16 08:01:21 +00:00
|
|
|
++ (op docSupport groff)
|
|
|
|
++ (ops (dtraceSupport && stdenv.hostPlatform.isLinux) [
|
|
|
|
systemtap
|
2023-02-24 04:20:00 +00:00
|
|
|
libsystemtap
|
|
|
|
])
|
|
|
|
++ ops yjitSupport [
|
|
|
|
rustPlatform.cargoSetupHook
|
2024-12-10 20:23:58 +01:00
|
|
|
cargo
|
2023-02-24 04:20:00 +00:00
|
|
|
rustc
|
2024-12-10 20:23:58 +01:00
|
|
|
]
|
2023-12-03 14:09:56 +01:00
|
|
|
++ op useBaseRuby baseRuby;
|
2023-02-18 10:45:00 -05:00
|
|
|
buildInputs =
|
2019-12-28 12:29:24 +01:00
|
|
|
[ autoconf ]
|
2023-02-18 10:45:00 -05:00
|
|
|
++ (op fiddleSupport libffi)
|
|
|
|
++ (ops cursesSupport [
|
|
|
|
ncurses
|
|
|
|
readline
|
2024-12-10 20:23:58 +01:00
|
|
|
])
|
2023-02-18 10:45:00 -05:00
|
|
|
++ (op zlibSupport zlib)
|
2023-03-09 17:55:45 +09:00
|
|
|
++ (op opensslSupport openssl)
|
2015-09-26 06:25:01 -07:00
|
|
|
++ (op gdbmSupport gdbm)
|
2023-03-09 17:55:45 +09:00
|
|
|
++ (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
|
2023-02-24 04:20:00 +00:00
|
|
|
++ op (!cursesSupport && stdenv.hostPlatform.isDarwin) readline
|
2024-02-13 14:34:09 +08:00
|
|
|
++ ops stdenv.hostPlatform.isDarwin [
|
2024-12-10 20:23:58 +01:00
|
|
|
libiconv
|
2024-02-13 14:34:09 +08:00
|
|
|
libunwind
|
2023-02-24 04:20:00 +00:00
|
|
|
];
|
2019-05-18 17:45:38 +00:00
|
|
|
propagatedBuildInputs = op jemallocSupport jemalloc;
|
2024-12-10 20:23:58 +01:00
|
|
|
|
2019-05-18 17:45:38 +00:00
|
|
|
enableParallelBuilding = true;
|
2019-05-19 15:15:07 +00:00
|
|
|
# /build/ruby-2.7.7/lib/fileutils.rb:882:in `chmod':
|
2021-11-22 10:14:27 -08:00
|
|
|
# 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;
|
2024-12-10 20:23:58 +01:00
|
|
|
|
2021-11-22 10:14:27 -08:00
|
|
|
patches =
|
|
|
|
op (lib.versionOlder ver.majMin "3.1") ./do-not-regenerate-revision.h.patch
|
|
|
|
++ op useBaseRuby (
|
|
|
|
if atLeast32 then ./do-not-update-gems-baseruby-3.2.patch else ./do-not-update-gems-baseruby.patch
|
2024-12-10 20:23:58 +01:00
|
|
|
)
|
2021-11-22 10:14:27 -08:00
|
|
|
++ ops (ver.majMin == "3.0") [
|
|
|
|
# Ruby 3.0 adds `-fdeclspec` to $CC instead of $CFLAGS. Fixed in later versions.
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/ruby/ruby/commit/0acc05caf7518cd0d63ab02bfa036455add02346.patch";
|
2023-12-13 06:47:11 +11:00
|
|
|
hash = "sha256-43hI9L6bXfeujgmgKFVmiWhg7OXvshPCCtQ4TxqK1zk=";
|
2024-12-10 20:23:58 +01:00
|
|
|
})
|
|
|
|
]
|
2023-03-09 17:55:45 +09:00
|
|
|
++ ops atLeast31 [
|
2021-11-22 10:14:27 -08:00
|
|
|
# When using a baseruby, ruby always sets "libdir" to the build
|
2022-06-18 07:21:38 +02:00
|
|
|
# directory, which nix rejects due to a reference in to /build/ in
|
|
|
|
# the final product. Removing this reference doesn't seem to break
|
2025-06-02 15:54:57 +02:00
|
|
|
# anything and fixes cross compilation.
|
2021-11-22 10:14:27 -08:00
|
|
|
./dont-refer-to-build-dir.patch
|
2024-12-10 20:23:58 +01:00
|
|
|
];
|
|
|
|
|
2021-11-22 10:14:27 -08:00
|
|
|
cargoRoot = opString yjitSupport "yjit";
|
2024-12-10 20:23:58 +01:00
|
|
|
|
2023-02-24 04:20:00 +00:00
|
|
|
cargoDeps =
|
2021-11-22 10:14:27 -08:00
|
|
|
if yjitSupport then
|
2025-01-28 12:59:19 +01:00
|
|
|
rustPlatform.fetchCargoVendor {
|
2024-02-13 14:34:09 +08:00
|
|
|
inherit (finalAttrs) src;
|
2021-11-22 10:14:27 -08:00
|
|
|
sourceRoot = "${finalAttrs.pname}-${version}/${finalAttrs.cargoRoot}";
|
|
|
|
hash =
|
2024-04-01 13:58:03 -04:00
|
|
|
assert cargoHash != null;
|
|
|
|
cargoHash;
|
2024-12-10 20:23:58 +01:00
|
|
|
}
|
2021-11-22 10:14:27 -08:00
|
|
|
else
|
|
|
|
null;
|
2024-12-10 20:23:58 +01:00
|
|
|
|
2019-05-06 00:38:52 +02: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
|
2024-12-10 20:23:58 +01:00
|
|
|
'';
|
|
|
|
|
2019-12-28 12:29:24 +01:00
|
|
|
postPatch = ''
|
2019-05-06 00:38:52 +02:00
|
|
|
sed -i configure.ac -e '/config.guess/d'
|
2020-12-29 04:20:00 +00:00
|
|
|
cp --remove-destination ${config}/config.guess tool/
|
2018-10-17 20:05:14 -05:00
|
|
|
cp --remove-destination ${config}/config.sub tool/
|
2024-12-10 20:23:58 +01:00
|
|
|
'';
|
|
|
|
|
2021-11-22 10:14:27 -08:00
|
|
|
configureFlags =
|
2024-12-10 20:23:58 +01:00
|
|
|
[
|
2020-12-29 04:20:00 +00:00
|
|
|
(lib.enableFeature (!stdenv.hostPlatform.isStatic) "shared")
|
|
|
|
(lib.enableFeature true "pthread")
|
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
|
|
|
(lib.withFeatureAs true "soname" "ruby-${version}")
|
|
|
|
(lib.withFeatureAs useBaseRuby "baseruby" "${baseRuby}/bin/ruby")
|
2024-02-13 14:34:09 +08:00
|
|
|
(lib.enableFeature dtraceSupport "dtrace")
|
|
|
|
(lib.enableFeature jitSupport "jit-support")
|
2023-02-24 04:20:00 +00:00
|
|
|
(lib.enableFeature yjitSupport "yjit")
|
2021-01-23 20:15:07 +07:00
|
|
|
(lib.enableFeature docSupport "install-doc")
|
|
|
|
(lib.withFeature jemallocSupport "jemalloc")
|
2015-09-26 06:25:01 -07:00
|
|
|
(lib.withFeatureAs docSupport "ridir" "${placeholder "devdoc"}/share/ri")
|
2016-10-31 21:39:44 +00: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`.
|
2024-12-10 20:23:58 +01:00
|
|
|
]
|
2020-06-07 10:19:16 +03:00
|
|
|
++ lib.optional stdenv.cc.isGNU "CFLAGS=-O3"
|
2024-12-10 20:23:58 +01:00
|
|
|
++ [
|
|
|
|
]
|
2020-06-07 10:19:16 +03:00
|
|
|
++ ops stdenv.hostPlatform.isDarwin [
|
2019-12-12 16:38:55 +01:00
|
|
|
# on darwin, we have /usr/include/tk.h -- so the configure script detects
|
|
|
|
# that tk is installed
|
2019-12-12 16:46:04 +01:00
|
|
|
"--with-out-ext=tk"
|
2022-11-20 13:50:53 +01:00
|
|
|
# on yosemite, "generating encdb.h" will hang for a very long time without this flag
|
|
|
|
"--with-setjmp-type=setjmp"
|
2024-12-10 20:23:58 +01:00
|
|
|
]
|
2022-11-20 13:50:53 +01:00
|
|
|
++ ops stdenv.hostPlatform.isFreeBSD [
|
2024-06-07 09:30:20 -07:00
|
|
|
"rb_cv_gnu_qsort_r=no"
|
|
|
|
"rb_cv_bsd_qsort_r=yes"
|
2024-12-10 20:23:58 +01:00
|
|
|
];
|
|
|
|
|
2022-11-20 13:50:53 +01:00
|
|
|
preConfigure = opString docSupport ''
|
|
|
|
# rdoc creates XDG_DATA_DIR (defaulting to $HOME/.local/share) even if
|
|
|
|
# it's not going to be used.
|
|
|
|
export HOME=$TMPDIR
|
2024-12-10 20:23:58 +01:00
|
|
|
'';
|
|
|
|
|
2022-11-20 13:50:53 +01:00
|
|
|
# fails with "16993 tests, 2229489 assertions, 105 failures, 14 errors, 89 skips"
|
2022-03-14 16:31:14 +09:00
|
|
|
# mostly TZ- and patch-related tests
|
|
|
|
# TZ- failures are caused by nix sandboxing, I didn't investigate others
|
|
|
|
doCheck = false;
|
2024-12-10 20:23:58 +01:00
|
|
|
|
2022-03-14 16:31:14 +09:00
|
|
|
preInstall = ''
|
|
|
|
# Ruby installs gems here itself now.
|
2024-02-13 14:34:09 +08:00
|
|
|
mkdir -pv "$out/${finalAttrs.passthru.gemPath}"
|
2024-10-30 12:00:45 -04:00
|
|
|
export GEM_HOME="$out/${finalAttrs.passthru.gemPath}"
|
2024-12-10 20:23:58 +01:00
|
|
|
'';
|
|
|
|
|
2024-10-30 12:00:45 -04:00
|
|
|
installFlags = lib.optional docSupport "install-doc";
|
2015-09-26 06:25:01 -07:00
|
|
|
# Bundler tries to create this directory
|
2024-02-13 14:34:09 +08:00
|
|
|
postInstall =
|
2024-12-10 20:23:58 +01:00
|
|
|
''
|
2019-05-06 00:38:52 +02:00
|
|
|
rbConfig=$(find $out/lib/ruby -name rbconfig.rb)
|
2021-03-06 17:24:04 -05:00
|
|
|
# Remove references to the build environment from the closure
|
|
|
|
sed -i '/^ CONFIG\["\(BASERUBY\|SHELL\|GREP\|EGREP\|MKDIR_P\|MAKEDIRS\|INSTALL\)"\]/d' $rbConfig
|
2017-08-10 18:22:07 -04:00
|
|
|
# Remove unnecessary groff reference from runtime closure, since it's big
|
2019-05-06 00:38:52 +02:00
|
|
|
sed -i '/NROFF/d' $rbConfig
|
|
|
|
${lib.optionalString (!jitSupport) ''
|
|
|
|
# Get rid of the CC runtime dependency
|
2023-10-03 03:29:45 +03:00
|
|
|
remove-references-to \
|
2020-06-07 10:19:16 +03:00
|
|
|
-t ${stdenv.cc} \
|
2019-12-12 16:46:04 +01:00
|
|
|
$out/lib/libruby*
|
2019-05-06 00:38:52 +02:00
|
|
|
remove-references-to \
|
2020-06-07 10:19:16 +03:00
|
|
|
-t ${stdenv.cc} \
|
2019-05-06 00:38:52 +02:00
|
|
|
$rbConfig
|
|
|
|
sed -i '/CC_VERSION_MESSAGE/d' $rbConfig
|
2024-12-10 20:23:58 +01:00
|
|
|
''}
|
|
|
|
|
2019-05-06 00:38:52 +02:00
|
|
|
# Allow to override compiler. This is important for cross compiling as
|
2015-09-26 06:25:01 -07:00
|
|
|
# we need to set a compiler that is different from the build one.
|
2024-02-02 18:14:44 +01:00
|
|
|
sed -i "$rbConfig" \
|
|
|
|
-e 's/CONFIG\["CC"\] = "\(.*\)"/CONFIG["CC"] = if ENV["CC"].nil? || ENV["CC"].empty? then "\1" else ENV["CC"] end/' \
|
2015-09-26 06:25:01 -07:00
|
|
|
-e 's/CONFIG\["CXX"\] = "\(.*\)"/CONFIG["CXX"] = if ENV["CXX"].nil? || ENV["CXX"].empty? then "\1" else ENV["CXX"] end/'
|
2024-12-10 20:23:58 +01:00
|
|
|
|
2023-10-03 03:29:45 +03:00
|
|
|
# Remove unnecessary external intermediate files created by gems
|
2024-02-13 14:34:09 +08:00
|
|
|
extMakefiles=$(find $out/${finalAttrs.passthru.gemPath} -name Makefile)
|
2022-03-14 16:31:14 +09:00
|
|
|
for makefile in $extMakefiles; do
|
2023-10-03 03:29:45 +03:00
|
|
|
make -C "$(dirname "$makefile")" distclean
|
2024-12-10 20:23:58 +01:00
|
|
|
done
|
2023-10-03 03:29:45 +03:00
|
|
|
find "$out/${finalAttrs.passthru.gemPath}" \( -name gem_make.out -o -name mkmf.log -o -name exts.mk \) -delete
|
|
|
|
# Bundler tries to create this directory
|
2021-12-22 19:25:41 -08:00
|
|
|
mkdir -p $out/nix-support
|
2015-09-26 06:25:01 -07:00
|
|
|
cat > $out/nix-support/setup-hook <<EOF
|
|
|
|
addGemPath() {
|
2021-12-22 19:25:41 -08:00
|
|
|
addToSearchPath GEM_PATH \$1/${finalAttrs.passthru.gemPath}
|
2024-12-10 20:23:58 +01:00
|
|
|
}
|
2021-12-22 19:25:41 -08: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}
|
2024-12-10 20:23:58 +01:00
|
|
|
}
|
|
|
|
|
2017-08-10 18:22:07 -04:00
|
|
|
addEnvHooks "$hostOffset" addGemPath
|
2019-05-06 00:38:52 +02:00
|
|
|
addEnvHooks "$hostOffset" addRubyLibPath
|
2024-12-10 20:23:58 +01:00
|
|
|
EOF
|
|
|
|
''
|
2023-02-24 04:20:00 +00:00
|
|
|
+ opString docSupport ''
|
2022-01-22 10:38:04 -08:00
|
|
|
# Prevent the docs from being included in the closure
|
2021-12-22 19:25:41 -08:00
|
|
|
sed -i "s|\$(DESTDIR)$devdoc|\$(datarootdir)/\$(RI_BASE_NAME)|" $rbConfig
|
2023-02-02 18:39:51 +01:00
|
|
|
sed -i "s|'--with-ridir=$devdoc/share/ri'||" $rbConfig
|
2024-12-10 20:23:58 +01:00
|
|
|
|
2023-02-02 18:39:51 +01:00
|
|
|
# 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
|
|
|
|
''
|
|
|
|
+ opString useBaseRuby ''
|
|
|
|
# Prevent the baseruby from being included in the closure.
|
|
|
|
remove-references-to \
|
|
|
|
-t ${baseRuby} \
|
|
|
|
$rbConfig $out/lib/libruby*
|
|
|
|
'';
|
2024-12-10 20:23:58 +01:00
|
|
|
|
2023-02-02 18:39:51 +01:00
|
|
|
installCheckPhase = ''
|
|
|
|
overriden_cc=$(CC=foo $out/bin/ruby -rrbconfig -e 'puts RbConfig::CONFIG["CC"]')
|
|
|
|
if [[ "$overriden_cc" != "foo" ]]; then
|
|
|
|
echo "CC cannot be overwritten: $overriden_cc != foo" >&2
|
|
|
|
false
|
|
|
|
fi
|
2024-12-10 20:23:58 +01:00
|
|
|
|
2023-02-02 18:39:51 +01:00
|
|
|
fallback_cc=$(unset CC; $out/bin/ruby -rrbconfig -e 'puts RbConfig::CONFIG["CC"]')
|
|
|
|
if [[ "$fallback_cc" != "$CC" ]]; then
|
2022-08-12 04:20:00 +00:00
|
|
|
echo "CC='$fallback_cc' should be '$CC' by default" >&2
|
|
|
|
false
|
2024-12-10 20:23:58 +01:00
|
|
|
fi
|
|
|
|
'';
|
2022-08-12 04:20:00 +00:00
|
|
|
doInstallCheck = true;
|
2024-12-10 20:23:58 +01:00
|
|
|
|
2022-08-12 04:20:00 +00:00
|
|
|
disallowedRequisites = op (!jitSupport) stdenv.cc ++ op useBaseRuby baseRuby;
|
2024-12-10 20:23:58 +01:00
|
|
|
|
2024-07-04 22:29:06 -03:00
|
|
|
meta = with lib; {
|
2017-09-08 12:07:39 +08:00
|
|
|
description = "Object-oriented language for quick and easy programming";
|
|
|
|
homepage = "https://www.ruby-lang.org/";
|
|
|
|
license = licenses.ruby;
|
|
|
|
maintainers = with maintainers; [ manveru ];
|
|
|
|
platforms = platforms.all;
|
2024-07-27 10:31:11 +02:00
|
|
|
mainProgram = "ruby";
|
2023-05-09 15:17:01 +02:00
|
|
|
knownVulnerabilities = op (lib.versionOlder ver.majMin "3.0") "This Ruby release has reached its end of life. See https://www.ruby-lang.org/en/downloads/branches/.";
|
2016-03-01 20:00:54 +00:00
|
|
|
};
|
2016-09-20 17:41:16 +01:00
|
|
|
|
2015-09-26 06:25:01 -07:00
|
|
|
passthru =
|
2024-12-10 20:23:58 +01:00
|
|
|
rec {
|
2016-09-20 17:41:16 +01:00
|
|
|
version = ver;
|
2015-09-26 06:25:01 -07:00
|
|
|
rubyEngine = "ruby";
|
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 {
|
2016-03-01 20:00:54 +00:00
|
|
|
inherit buildEnv bundler bundix;
|
2024-02-13 14:34:09 +08:00
|
|
|
ruby = finalAttrs.finalPackage;
|
2024-12-10 20:23:58 +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;
|
2024-02-13 14:34:09 +08:00
|
|
|
ruby = finalAttrs.finalPackage;
|
2022-12-09 12:19:26 -05:00
|
|
|
})
|
|
|
|
withPackages
|
|
|
|
buildGems
|
|
|
|
gems
|
|
|
|
;
|
2021-09-17 22:12:30 -07:00
|
|
|
}
|
|
|
|
// lib.optionalAttrs useBaseRuby {
|
|
|
|
inherit baseRuby;
|
2015-09-26 06:25:01 -07:00
|
|
|
};
|
2024-02-13 14:34:09 +08:00
|
|
|
})
|
|
|
|
) args;
|
|
|
|
in
|
|
|
|
rubyDrv;
|
2024-12-10 20:23:58 +01:00
|
|
|
|
2015-09-26 06:25:01 -07:00
|
|
|
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 {
|
2025-03-26 15:07:36 +01:00
|
|
|
version = rubyVersion "3" "1" "7" "";
|
|
|
|
hash = "sha256-BVas1p8UHdrOA/pd2NdufqDY9SMu3wEkKVebzaqzDns=";
|
2021-12-25 04:20:00 +00:00
|
|
|
};
|
2023-02-24 04:20:00 +00:00
|
|
|
|
|
|
|
ruby_3_2 = generic {
|
2025-03-26 15:08:05 +01:00
|
|
|
version = rubyVersion "3" "2" "8" "";
|
|
|
|
hash = "sha256-d6zdjPu+H45XO15lNuA8UQPfmJ3AX6aMcPARgzw1YHU=";
|
2025-01-28 12:59:19 +01:00
|
|
|
cargoHash = "sha256-CMVx5/+ugDNEuLAvyPN0nGHwQw6RXyfRsMO9I+kyZpk=";
|
2023-02-24 04:20:00 +00:00
|
|
|
};
|
2023-06-16 17:15:23 +10:00
|
|
|
|
|
|
|
ruby_3_3 = generic {
|
2025-04-15 18:37:46 +10:00
|
|
|
version = rubyVersion "3" "3" "8" "";
|
|
|
|
hash = "sha256-WuKKh6WaPkrWa8KTHSMturlT0KqPa687xPj4CXfInKs=";
|
2025-01-28 12:59:19 +01:00
|
|
|
cargoHash = "sha256-xE7Cv+NVmOHOlXa/Mg72CTSaZRb72lOja98JBvxPvSs=";
|
2023-06-16 17:15:23 +10:00
|
|
|
};
|
|
|
|
|
2024-10-08 14:32:19 +11:00
|
|
|
ruby_3_4 = generic {
|
2025-04-15 18:41:51 +10:00
|
|
|
version = rubyVersion "3" "4" "3" "";
|
|
|
|
hash = "sha256-VaTNHcvlyifPZeiak1pILCuyKEgyk5JmVRwOxotDf0Y=";
|
2025-01-28 12:59:19 +01:00
|
|
|
cargoHash = "sha256-5Tp8Kth0yO89/LIcU8K01z6DdZRr8MAA0DPKqDEjIt0=";
|
2024-10-08 14:32:19 +11:00
|
|
|
};
|
2015-09-26 06:25:01 -07:00
|
|
|
}
|