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

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