2008-04-11 11:23:33 +02:00
|
|
|
args : with args;
|
|
|
|
rec {
|
2009-06-30 16:29:17 +02:00
|
|
|
|
2012-02-17 21:33:15 +01:00
|
|
|
version = "1.8.17";
|
2008-04-11 11:23:33 +02:00
|
|
|
src = fetchurl {
|
2010-09-08 11:56:53 +02:00
|
|
|
url = "http://production.cf.rubygems.org/rubygems/${name}.tgz";
|
2012-02-17 21:33:15 +01:00
|
|
|
sha256 = "068sr55r8wiw55bpf93pp07871cbqhxk9cxma6arhd04j7n8ppph";
|
2008-04-11 11:23:33 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ruby makeWrapper];
|
|
|
|
configureFlags = [];
|
|
|
|
|
2009-05-20 01:25:58 +02:00
|
|
|
doInstall = fullDepEntry (''
|
2008-04-11 11:23:33 +02:00
|
|
|
ruby setup.rb --prefix=$out/
|
2011-01-21 09:24:57 +01:00
|
|
|
wrapProgram $out/bin/gem --prefix RUBYLIB : $out/lib
|
2010-01-15 20:35:06 +01:00
|
|
|
find $out -type f -name "*.rb" | xargs sed -i "s@/usr/bin/env@$(type -p env)@g"
|
2011-01-21 09:24:46 +01:00
|
|
|
mkdir -pv $out/nix-support
|
|
|
|
cat > $out/nix-support/setup-hook <<EOF
|
|
|
|
export RUBYOPT=rubygems
|
|
|
|
addToSearchPath RUBYLIB $out/lib
|
|
|
|
|
|
|
|
addGemPath() {
|
|
|
|
addToSearchPath GEM_PATH \$1/${ruby.gemPath}
|
|
|
|
}
|
|
|
|
|
|
|
|
envHooks+=(addGemPath)
|
|
|
|
EOF'') ["minInit" "addInputs" "doUnpack" "defEnsureDir"];
|
2008-04-11 11:23:33 +02:00
|
|
|
|
|
|
|
/* doConfigure should be specified separately */
|
2010-01-15 20:35:06 +01:00
|
|
|
phaseNames = ["doPatch" "doInstall"];
|
2008-04-11 11:23:33 +02:00
|
|
|
|
|
|
|
name = "rubygems-" + version;
|
|
|
|
meta = {
|
2008-08-03 00:25:54 +02:00
|
|
|
description = "Ruby gems package collection";
|
2008-10-19 14:59:34 +02:00
|
|
|
longDescription = ''
|
2011-01-21 09:24:57 +01:00
|
|
|
Nix can create nix packages from gems.
|
|
|
|
|
|
|
|
To use it do the following:
|
|
|
|
1. Install rubygems and rubyLibs.nix.
|
|
|
|
2. Add $your_profile/${ruby.gemPath} to GEM_PATH.
|
2011-05-08 11:35:31 +02:00
|
|
|
3. export RUBYLIB=$your_profile/lib RUBYOPT=rubygems.
|
|
|
|
4. Run `gem nix --[no-]user-install gem1 gem2 ...` to generate Nix
|
|
|
|
expression from gem repository.
|
|
|
|
5. Install rubyLibs.gem1 etc.
|
2008-10-19 14:59:34 +02:00
|
|
|
'';
|
2008-04-11 11:23:33 +02:00
|
|
|
};
|
2009-06-30 16:29:20 +02:00
|
|
|
|
2011-01-21 09:24:57 +01:00
|
|
|
patches = [ ./gem_hook.patch ];
|
2008-04-11 11:23:33 +02:00
|
|
|
}
|