Skip to content

Commit

Permalink
bundler: 1.17.3 -> 2.1.4
Browse files Browse the repository at this point in the history
(cherry picked from commit a2e73b0)
  • Loading branch information
manveru authored and disassembler committed Apr 8, 2020
1 parent 78e69d9 commit c6758ee
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion pkgs/development/ruby-modules/bundled-common/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ let
for i in ${ruby}/bin/*; do
makeWrapper "$i" $out/bin/$(basename "$i") \
--set BUNDLE_GEMFILE ${confFiles}/Gemfile \
--set BUNDLE_PATH ${basicEnv}/${ruby.gemPath} \
--unset BUNDLE_PATH \
--set BUNDLE_FROZEN 1 \
--set GEM_HOME ${basicEnv}/${ruby.gemPath} \
--set GEM_PATH ${basicEnv}/${ruby.gemPath}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
#
ENV["BUNDLE_GEMFILE"] = #{gemfile.dump}
ENV["BUNDLE_PATH"] = #{bundle_path.dump}
ENV.delete 'BUNDLE_PATH'
ENV['BUNDLE_FROZEN'] = '1'
$LOAD_PATH.unshift #{bundler_path.dump} + "/lib"
Expand Down
2 changes: 1 addition & 1 deletion pkgs/development/ruby-modules/bundler-app/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ in
${(lib.concatMapStrings (x: "ln -s '${basicEnv}/bin/${x}' $out/bin/${x};\n") exes)}
${(lib.concatMapStrings (s: "makeWrapper $out/bin/$(basename ${s}) $srcdir/${s} " +
"--set BUNDLE_GEMFILE ${basicEnv.confFiles}/Gemfile "+
"--set BUNDLE_PATH ${basicEnv}/${ruby.gemPath} "+
"--unset BUNDLE_PATH "+
"--set BUNDLE_FROZEN 1 "+
"--set GEM_HOME ${basicEnv}/${ruby.gemPath} "+
"--set GEM_PATH ${basicEnv}/${ruby.gemPath} "+
Expand Down
4 changes: 2 additions & 2 deletions pkgs/development/ruby-modules/bundler/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ buildRubyGem rec {
inherit ruby;
name = "${gemName}-${version}";
gemName = "bundler";
version = "1.17.3";
source.sha256 = "0ln3gnk7cls81gwsbxvrmlidsfd78s6b2hzlm4d4a9wbaidzfjxw";
version = "2.1.4";
source.sha256 = "12glbb1357x91fvd004jgkw7ihlkpc9dwr349pd7j83isqhls0ah";
dontPatchShebangs = true;

postFixup = ''
Expand Down

0 comments on commit c6758ee

Please sign in to comment.