2017-10-29 19:51:16 +00:00
{ stdenv , buildPackages , lib
2019-09-07 14:02:40 +01:00
, fetchurl , fetchpatch , fetchFromSavannah , fetchFromGitHub
2021-02-12 20:29:10 +00:00
, zlib , openssl , gdbm , ncurses , readline , groff , libyaml , libffi , jemalloc , autoreconfHook , bison
2018-05-04 18:56:38 +01:00
, autoconf , libiconv , libobjc , libunwind , Foundation
, buildEnv , bundler , bundix
2019-12-12 15:38:55 +00:00
, makeWrapper , buildRubyGem , defaultGemConfig , removeReferencesTo
2015-09-26 14:25:01 +01:00
} @ args :
let
2016-09-20 17:41:16 +01:00
op = lib . optional ;
ops = lib . optionals ;
opString = lib . optionalString ;
2015-09-26 14:25:01 +01:00
patchSet = import ./rvm-patchsets.nix { inherit fetchFromGitHub ; } ;
config = import ./config.nix { inherit fetchFromSavannah ; } ;
2019-12-29 18:15:49 +00:00
rubygems = import ./rubygems { inherit stdenv lib fetchurl fetchpatch ; } ;
2015-09-26 14:25:01 +01:00
2016-09-20 17:41:16 +01:00
# Contains the ruby version heuristics
rubyVersion = import ./ruby-version.nix { inherit lib ; } ;
2017-10-29 19:51:16 +00:00
# Needed during postInstall
buildRuby =
if stdenv . hostPlatform == stdenv . buildPlatform
then " $ o u t / b i n / r u b y "
else " ${ buildPackages . ruby } / b i n / r u b y " ;
2016-09-20 17:41:16 +01:00
generic = { version , sha256 }: let
ver = version ;
tag = ver . gitTag ;
2019-12-25 09:20:00 +00:00
atLeast27 = lib . versionAtLeast ver . majMin " 2 . 7 " ;
2019-05-05 23:37:43 +01:00
baseruby = self . override {
useRailsExpress = false ;
docSupport = false ;
2019-05-18 18:45:38 +01:00
rubygemsSupport = false ;
2019-05-05 23:37:43 +01:00
} ;
2015-09-26 14:25:01 +01:00
self = lib . makeOverridable (
2018-05-04 18:56:38 +01:00
{ stdenv , buildPackages , lib
2019-09-07 14:02:40 +01:00
, fetchurl , fetchpatch , fetchFromSavannah , fetchFromGitHub
2015-09-26 14:25:01 +01:00
, useRailsExpress ? true
2019-05-18 18:45:38 +01:00
, rubygemsSupport ? true
2015-09-26 14:25:01 +01:00
, zlib , zlibSupport ? true
, openssl , opensslSupport ? true
, gdbm , gdbmSupport ? true
, ncurses , readline , cursesSupport ? true
2019-05-05 23:39:16 +01:00
, groff , docSupport ? true
2015-09-26 14:25:01 +01:00
, libyaml , yamlSupport ? true
, libffi , fiddleSupport ? true
2021-02-12 20:29:10 +00:00
, jemalloc , jemallocSupport ? false
2020-06-07 08:19:16 +01:00
# By default, ruby has 3 observed references to stdenv.cc:
#
# - If you run:
# ruby -e "puts RbConfig::CONFIG['configure_args']"
# - In:
# $out/${passthru.libPath}/${stdenv.targetPlatform.system}/rbconfig.rb
# 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
#
# Since some Gems require JIT support, there's probably no
# escape from this reference. Hence, it was decided to enable this
# feature by default, as it's enabled by default by ruby's ./configure
2020-06-13 08:55:58 +01:00
# script. If you'd like to have a ruby without reference to cc, setting
# jitSupport to false should remove all known references mentioned above.
2020-06-07 08:19:16 +01:00
, removeReferencesTo , jitSupport ? true
2015-09-26 14:25:01 +01:00
, autoreconfHook , bison , autoconf
2018-05-04 18:56:38 +01:00
, buildEnv , bundler , bundix
, libiconv , libobjc , libunwind , Foundation
2019-05-18 18:45:38 +01:00
, makeWrapper , buildRubyGem , defaultGemConfig
2015-09-26 14:25:01 +01:00
} :
2019-04-28 13:30:52 +01:00
stdenv . mkDerivation rec {
2019-08-13 22:52:01 +01:00
pname = " r u b y " ;
inherit version ;
2019-04-28 13:30:52 +01:00
src = if useRailsExpress then fetchFromGitHub {
2015-09-26 14:25:01 +01:00
owner = " r u b y " ;
repo = " r u b y " ;
rev = tag ;
sha256 = sha256 . git ;
} else fetchurl {
2018-12-25 19:25:45 +00: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 " ;
2015-09-26 14:25:01 +01:00
sha256 = sha256 . src ;
} ;
# Have `configure' avoid `/usr/bin/nroff' in non-chroot builds.
2018-02-13 20:11:17 +00:00
NROFF = if docSupport then " ${ groff } / b i n / n r o f f " else null ;
2015-09-26 14:25:01 +01:00
2019-05-05 23:38:52 +01:00
outputs = [ " o u t " ] ++ lib . optional docSupport " d e v d o c " ;
2018-12-11 08:01:58 +00:00
nativeBuildInputs = [ autoreconfHook bison ]
++ ( op docSupport groff )
++ op ( stdenv . buildPlatform != stdenv . hostPlatform ) buildPackages . ruby ;
2019-12-28 11:29:24 +00:00
buildInputs = [ autoconf ]
++ ( op fiddleSupport libffi )
2015-09-26 14:25:01 +01:00
++ ( ops cursesSupport [ ncurses readline ] )
++ ( op zlibSupport zlib )
++ ( op opensslSupport openssl )
++ ( op gdbmSupport gdbm )
++ ( op yamlSupport libyaml )
2021-02-12 20:29:10 +00:00
++ ( op jemallocSupport jemalloc )
2015-09-26 14:25:01 +01: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 18:56:38 +01:00
++ op ( ! cursesSupport && stdenv . isDarwin ) readline
++ ops stdenv . isDarwin [ libiconv libobjc libunwind Foundation ] ;
2015-09-26 14:25:01 +01:00
enableParallelBuilding = true ;
2016-03-02 10:05:01 +00:00
patches =
( import ./patchsets.nix {
2019-09-07 14:02:40 +01:00
inherit patchSet useRailsExpress ops fetchpatch ;
2016-09-20 17:41:16 +01:00
patchLevel = ver . patchLevel ;
2019-08-13 22:52:01 +01:00
} ) . ${ ver . majMinTiny } ;
2015-09-26 14:25:01 +01:00
2019-05-18 18:45:38 +01:00
postUnpack = opString rubygemsSupport ''
2019-05-19 16:15:07 +01:00
rm - rf $ sourceRoot / { lib , test } /rubygems *
cp - r $ { rubygems } /lib/rubygems * $ sourceRoot/lib
cp - r $ { rubygems } /test/rubygems $ sourceRoot/test
2015-09-26 14:25:01 +01:00
'' ;
2019-12-28 11:29:24 +00:00
postPatch = ''
2018-01-02 09:50:37 +00:00
sed - i configure . ac - e ' /config.guess/d '
2018-10-18 02:05:14 +01:00
cp - - remove-destination $ { config } /config.guess tool /
cp - - remove-destination $ { config } /config.sub tool /
2020-10-25 14:48:37 +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 '
2015-11-16 17:10:20 +00:00
'' ;
2015-09-26 14:25:01 +01:00
2019-12-25 09:20:00 +00:00
# Force the revision.h generation. Somehow `revision.tmp` is an empty
# file and because we don't add `git` to buildInputs, hence the check is
# always true.
# https://github.com/ruby/ruby/commit/97a5af62a318fcd93a4e5e4428d576c0280ddbae
buildFlags = lib . optionals atLeast27 [ " R E V I S I O N _ L A T E S T = 0 " ] ;
2020-05-08 07:36:01 +01:00
configureFlags = [ " - - e n a b l e - s h a r e d " " - - e n a b l e - p t h r e a d " " - - w i t h - s o n a m e = r u b y - ${ version } " ]
2015-09-26 14:25:01 +01:00
++ op useRailsExpress " - - w i t h - b a s e r u b y = ${ baseruby } / b i n / r u b y "
2020-06-07 08:19:16 +01:00
++ op ( ! jitSupport ) " - - d i s a b l e - j i t - s u p p o r t "
2016-12-27 17:55:10 +00:00
++ op ( ! docSupport ) " - - d i s a b l e - i n s t a l l - d o c "
2021-02-12 20:29:10 +00:00
++ op ( jemallocSupport ) " - - w i t h - j e m a l l o c "
2015-09-26 14:25:01 +01: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 "
2017-10-29 19:51:16 +00:00
]
++ op ( stdenv . hostPlatform != stdenv . buildPlatform )
" - - w i t h - b a s e r u b y = ${ buildRuby } " ;
2015-09-26 14:25:01 +01:00
2019-05-05 23:38:52 +01:00
preConfigure = opString docSupport ''
configureFlagsArray + = ( " - - w i t h - r i d i r = $ d e v d o c / s h a r e / r i " )
'' ;
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 15:04:48 +01: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 16:16:16 +00: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 13:15:07 +00:00
installFlags = lib . optional docSupport " i n s t a l l - d o c " ;
2015-09-26 14:25:01 +01:00
# Bundler tries to create this directory
postInstall = ''
2016-10-31 21:39:44 +00:00
# Remove unnecessary groff reference from runtime closure, since it's big
sed - i ' /NROFF/d ' $ out/lib/ruby /* / */ rbconfig . rb
2019-12-12 15:46:04 +00:00
$ {
2020-06-07 08:19:16 +01:00
lib . optionalString ( ! jitSupport ) ''
2019-12-12 15:38:55 +00:00
# Get rid of the CC runtime dependency
$ { removeReferencesTo } /bin/remove-references-to \
- t $ { stdenv . cc } \
2019-12-12 15:46:04 +00:00
$ out/lib/libruby *
2020-06-07 08:19:16 +01:00
$ { removeReferencesTo } /bin/remove-references-to \
- t $ { stdenv . cc } \
$ out / $ { passthru . libPath } / $ { stdenv . targetPlatform . system } /rbconfig.rb
2019-12-12 15:46:04 +00:00
''
}
2015-09-26 14:25:01 +01: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-05 23:38:52 +01:00
addRubyLibPath ( ) {
addToSearchPath RUBYLIB \ $ 1/lib/ruby/site_ruby
addToSearchPath RUBYLIB \ $ 1/lib/ruby/site_ruby / $ { ver . libDir }
addToSearchPath RUBYLIB \ $ 1/lib/ruby/site_ruby / $ { ver . libDir } / $ { stdenv . targetPlatform . system }
}
2015-09-26 14:25:01 +01:00
2017-08-10 23:22:07 +01:00
addEnvHooks " $ h o s t O f f s e t " addGemPath
2019-05-05 23:38:52 +01:00
addEnvHooks " $ h o s t O f f s e t " addRubyLibPath
2015-09-26 14:25:01 +01:00
EOF
2019-05-05 23:38:52 +01:00
rbConfig = $ ( find $ out/lib/ruby - name rbconfig . rb )
'' + 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
'' + o p S t r i n g u s e R a i l s E x p r e s s ''
2015-09-26 14:25:01 +01:00
# Prevent the baseruby from being included in the closure.
sed - i ' / ^ CONFIG \ [ " B A S E R U B Y " \ ] /d ' $ rbConfig
sed - i " s | ' - - w i t h - b a s e r u b y = ${ baseruby } / b i n / r u b y ' | | " $ rbConfig
'' ;
2020-11-12 10:29:22 +00:00
disallowedRequisites = op ( ! jitSupport ) stdenv . cc . cc ;
2021-01-23 13:15:07 +00:00
meta = with lib ; {
2015-09-26 14:25:01 +01:00
description = " T h e R u b y l a n g u a g e " ;
2020-04-01 02:11:51 +01:00
homepage = " h t t p : / / w w w . r u b y - l a n g . o r g / e n / " ;
2017-09-08 05:07:39 +01:00
license = licenses . ruby ;
2020-10-03 05:20:00 +01:00
maintainers = with maintainers ; [ vrthra manveru marsam ] ;
2017-09-08 05:07:39 +01:00
platforms = platforms . all ;
2015-09-26 14:25:01 +01:00
} ;
passthru = rec {
2016-09-20 17:41:16 +01:00
version = ver ;
2015-09-26 14:25:01 +01:00
rubyEngine = " r u b y " ;
baseRuby = baseruby ;
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 02:52:43 +01: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
2019-05-18 18:45:38 +01:00
inherit ( import ../../ruby-modules/with-packages {
inherit lib stdenv makeWrapper buildRubyGem buildEnv ;
gemConfig = defaultGemConfig ;
ruby = self ;
} ) withPackages gems ;
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 14:25:01 +01:00
} ;
}
) args ; in self ;
in {
2018-12-25 19:25:45 +00:00
ruby_2_6 = generic {
2020-03-31 10:22:00 +01:00
version = rubyVersion " 2 " " 6 " " 6 " " " ;
2018-12-25 19:25:45 +00:00
sha256 = {
2020-03-31 10:22:00 +01:00
src = " 1 4 9 2 x 7 9 5 q z g p 3 z h p l 5 8 0 k d 1 s d p 5 0 n 5 h f s m p b f h d s q 2 r n x w y i 8 j r n " ;
git = " 1 j r 9 v 9 9 a 7 a w s s q m w 7 5 3 1 a f b x 4 a 8 i 9 x 5 y f q y f f h a 5 4 5 g 7 r 4 s 7 k j 5 0 " ;
2018-12-25 19:25:45 +00:00
} ;
} ;
2019-12-25 09:20:00 +00:00
ruby_2_7 = generic {
2020-10-03 05:20:00 +01:00
version = rubyVersion " 2 " " 7 " " 2 " " " ;
2019-12-25 09:20:00 +00:00
sha256 = {
2020-10-03 05:20:00 +01:00
src = " 1 m 6 3 4 6 1 m x i 3 f g 4 y 3 b s p b g m b 0 c k b b b 1 l d g f 9 x i 0 p i w k p f s k 8 0 c m v f " ;
git = " 0 k b g z n f 1 y p r f p 9 6 4 5 k 3 1 r a 5 f 4 7 5 7 b 7 f i c h z i 0 h d g 6 n x k j 9 0 8 5 3 s 0 " ;
2019-12-25 09:20:00 +00:00
} ;
} ;
2015-09-26 14:25:01 +01:00
}