86f1579266
Having a separate rubygems package can lead to split-brain scenarios. Since rubygems is designed to replace himself on a ruby installation, let's do that.
9 lines
210 B
Nix
9 lines
210 B
Nix
{ fetchurl
|
|
, version ? "2.4.8"
|
|
, sha256 ? "0pl4civyf0vhqsqbqaivvxrb3fsg8sid9a8jv5vfnk4hypz3ahss"
|
|
}:
|
|
fetchurl {
|
|
url = "http://production.cf.rubygems.org/rubygems/rubygems-${version}.tgz";
|
|
sha256 = sha256;
|
|
}
|