2015-09-15 06:27:19 +02:00
|
|
|
args @ { makeWrapper, ruby, ... }: with args;
|
2009-06-30 16:29:17 +02:00
|
|
|
|
2014-10-31 02:44:57 +01:00
|
|
|
rec {
|
2014-10-28 05:16:14 +01:00
|
|
|
name = "rubygems-" + version;
|
2014-08-08 00:13:56 +02:00
|
|
|
version = "2.4.1";
|
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";
|
2014-08-08 00:13:56 +02:00
|
|
|
sha256 = "0cpr6cx3h74ykpb0cp4p4xg7a8j0bhz3sk271jq69l4mm4zy4h4f";
|
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
|
|
|
|
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"];
|
2015-09-15 06:27:19 +02:00
|
|
|
|
2008-04-11 11:23:33 +02:00
|
|
|
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.
|
|
|
|
|
2014-09-12 00:26:13 +02:00
|
|
|
To use it by installing gem-nix package.
|
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
|
|
|
}
|