about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ruby-modules/bundler/default.nix
blob: 584a13623ba377d4046d8a5c8f8d79c151ea55bb (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 = "2.3.9";
  source.sha256 = "sha256-VZiKuSDP3sSoBXUPcPmwHR/GbZs47NIF+ZlXtHSZWzg=";
  dontPatchShebangs = true;

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