Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at release-18.03 14 lines 354 B view raw
1{ buildRubyGem, makeWrapper, ruby, coreutils }: 2 3buildRubyGem rec { 4 inherit ruby; 5 name = "${gemName}-${version}"; 6 gemName = "bundler"; 7 version = "1.14.6"; 8 source.sha256 = "0h3x2csvlz99v2ryj1w72vn6kixf7rl35lhdryvh7s49brnj0cgl"; 9 dontPatchShebangs = true; 10 11 postFixup = '' 12 sed -i -e "s/activate_bin_path/bin_path/g" $out/bin/bundle 13 ''; 14}