1{ buildRubyGem, makeWrapper, ruby, coreutils }:
2
3buildRubyGem rec {
4 inherit ruby;
5 name = "${gemName}-${version}";
6 gemName = "bundler";
7 version = "1.12.5";
8 sha256 = "1q84xiwm9j771lpmiply0ls9l2bpvl5axn3jblxjvrldh8di2pkc";
9 dontPatchShebangs = true;
10
11 postFixup = ''
12 sed -i -e "s/activate_bin_path/bin_path/g" $out/bin/bundle
13 '';
14}