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

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

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