forked from mirrors/nixpkgs
21de2b973f
Moving to staging branch, as it's a huge rebuild. This reverts commit6511d3fe52
, reversing changes made tocf40140a53
.
15 lines
329 B
Nix
15 lines
329 B
Nix
{ buildRubyGem, ruby }:
|
|
|
|
buildRubyGem rec {
|
|
inherit ruby;
|
|
name = "${gemName}-${version}";
|
|
gemName = "bundler";
|
|
version = "2.3.20";
|
|
source.sha256 = "sha256-gJJ3vHzrJo6XpHS1iwLb77jd9ZB39GGLcOJQSrgaBHw=";
|
|
dontPatchShebangs = true;
|
|
|
|
postFixup = ''
|
|
sed -i -e "s/activate_bin_path/bin_path/g" $out/bin/bundle
|
|
'';
|
|
}
|