about summary refs log tree commit diff
path: root/pkgs/development/ruby-modules/bundler/default.nix
blob: 894c9df558e8d4f57f3c909e3d1f0f56885db5fa (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.16.1";
  source.sha256 = "1s2nq4qnffxg3kwrk7cnwxcvfihlhxm9absl2l6d3qckf3sy1f22";
  dontPatchShebangs = true;

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