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