about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorFliegendeWurst <2012gdwu+github@posteo.de>2022-01-26 13:16:10 +0100
committerFliegendeWurst <2012gdwu+github@posteo.de>2022-01-28 09:36:34 +0100
commitc053bd3a4b7353a2f0bf3bd7c6b3949ecbf50748 (patch)
tree8f3f9c4cf65746cc0d6b5284b41211bacbb83f0b /pkgs
parent02f296c273823608af2a19522a290512d48b0f0d (diff)
bundler: 2.2.24 -> 2.3.6
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/ruby-modules/bundler/default.nix4
-rw-r--r--pkgs/development/ruby-modules/gem/nix-bundle-install.rb4
2 files changed, 3 insertions, 5 deletions
diff --git a/pkgs/development/ruby-modules/bundler/default.nix b/pkgs/development/ruby-modules/bundler/default.nix
index 3306648368219..ecf98d75ce7d4 100644
--- a/pkgs/development/ruby-modules/bundler/default.nix
+++ b/pkgs/development/ruby-modules/bundler/default.nix
@@ -4,8 +4,8 @@ buildRubyGem rec {
   inherit ruby;
   name = "${gemName}-${version}";
   gemName = "bundler";
-  version = "2.2.24";
-  source.sha256 = "1x3czmqhlyb593ap7mxkk47idi2jnbnrpwj8xlsjdpi7iair9y62";
+  version = "2.3.6";
+  source.sha256 = "1531z805j3gls2x0pqp2bp1vv1rf5k7ynjl4qk72h8lpm1skqk9r";
   dontPatchShebangs = true;
 
   postFixup = ''
diff --git a/pkgs/development/ruby-modules/gem/nix-bundle-install.rb b/pkgs/development/ruby-modules/gem/nix-bundle-install.rb
index 0d501bd9add73..b0be71102c38e 100644
--- a/pkgs/development/ruby-modules/gem/nix-bundle-install.rb
+++ b/pkgs/development/ruby-modules/gem/nix-bundle-install.rb
@@ -118,9 +118,7 @@ else
   source = Bundler::Source::Path.new(options)
 end
 spec = source.specs.search_all(name).first
-Bundler.rubygems.with_build_args build_flags do
-  source.install(spec)
-end
+source.install(spec, :build_args => build_flags)
 
 msg = spec.post_install_message
 if msg