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