f3282c8d1e
* treewide: remove unused variables * making ofborg happy
31 lines
729 B
Nix
31 lines
729 B
Nix
{ stdenv, lib, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "rubygems";
|
|
version = "3.0.3";
|
|
|
|
src = fetchurl {
|
|
url = "https://rubygems.org/rubygems/rubygems-${version}.tgz";
|
|
sha256 = "0b6b9ads8522804xv8b8498gqwsv4qawv13f81kyc7g966y7lfmy";
|
|
};
|
|
|
|
patches = [
|
|
./0001-add-post-extract-hook.patch
|
|
./0002-binaries-with-env-shebang.patch
|
|
./0003-gem-install-default-to-user.patch
|
|
];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
cp -r . $out
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Package management framework for Ruby";
|
|
homepage = https://rubygems.org/;
|
|
license = with licenses; [ mit /* or */ ruby ];
|
|
maintainers = with maintainers; [ qyliss zimbatm ];
|
|
};
|
|
}
|