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