Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
66 lines
1.7 KiB
Ruby
66 lines
1.7 KiB
Ruby
#!/usr/bin/env ruby
|
|
require 'rbconfig'
|
|
require 'rubygems'
|
|
require 'rubygems/specification'
|
|
require 'fileutils'
|
|
|
|
# args/settings
|
|
out = ENV["out"]
|
|
ruby = ARGV[0]
|
|
gemfile = ARGV[1]
|
|
bundle_path = ARGV[2]
|
|
bundler_path = ARGV[3]
|
|
paths = ARGV[4].split
|
|
groups = ARGV[5].split
|
|
|
|
# generate binstubs
|
|
FileUtils.mkdir_p("#{out}/bin")
|
|
paths.each do |path|
|
|
next unless File.directory?("#{path}/nix-support/gem-meta")
|
|
|
|
name = File.read("#{path}/nix-support/gem-meta/name")
|
|
executables = File.read("#{path}/nix-support/gem-meta/executables")
|
|
.force_encoding('UTF-8').split
|
|
executables.each do |exe|
|
|
File.open("#{out}/bin/#{exe}", "w") do |f|
|
|
f.write(<<-EOF)
|
|
#!#{ruby}
|
|
#
|
|
# This file was generated by Nix.
|
|
#
|
|
# The application '#{exe}' is installed as part of a gem, and
|
|
# this file is here to facilitate running it.
|
|
#
|
|
|
|
ENV["BUNDLE_GEMFILE"] = #{gemfile.dump}
|
|
ENV.delete 'BUNDLE_PATH'
|
|
ENV['BUNDLE_FROZEN'] = '1'
|
|
ENV['BUNDLE_IGNORE_CONFIG'] = '1'
|
|
|
|
Gem.paths = { 'GEM_HOME' => #{bundle_path.dump} }
|
|
|
|
$LOAD_PATH.unshift #{File.join(bundler_path, "/lib").dump}
|
|
|
|
require 'bundler'
|
|
# Monkey-patch out the check that Bundler performs to determine
|
|
# whether the bundler env is writable. It's not writable, even for
|
|
# root! And for this use of Bundler, it shouldn't be necessary since
|
|
# we're not trying to perform any package management operations, only
|
|
# produce a Gem path. Thus, we replace it with a method that will
|
|
# always return false, to squelch a warning from Bundler saying that
|
|
# sudo may be required.
|
|
module Bundler
|
|
class <<self
|
|
def requires_sudo?
|
|
return false
|
|
end
|
|
end
|
|
end
|
|
Bundler.setup(#{groups.map(&:dump).join(', ')})
|
|
|
|
load Gem.bin_path(#{name.dump}, #{exe.dump})
|
|
EOF
|
|
FileUtils.chmod("+x", "#{out}/bin/#{exe}")
|
|
end
|
|
end
|
|
end
|