summary refs log tree commit diff
path: root/pkgs/development/ruby-modules/bundler/default.nix
blob: 6ba1d5f10ec1cb26f2c72a8e27afc14fbe736ce8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ buildRubyGem, makeWrapper, ruby, coreutils }:

buildRubyGem rec {
  inherit ruby;
  name = "${gemName}-${version}";
  gemName = "bundler";
  version = "1.14.6";
  source.sha256 = "0h3x2csvlz99v2ryj1w72vn6kixf7rl35lhdryvh7s49brnj0cgl";
  dontPatchShebangs = true;

  postFixup = ''
    sed -i -e "s/activate_bin_path/bin_path/g" $out/bin/bundle
  '';
}