mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 06:31:02 +00:00
36 lines
962 B
Nix
36 lines
962 B
Nix
{ ruby, lib, callPackage, gemFixes, fetchurl, buildRubyGem }@defs:
|
|
|
|
{ gemset, ruby ? defs.ruby, fixes ? gemFixes }@args:
|
|
|
|
let
|
|
const = x: y: x;
|
|
|
|
fetchers.gem = attrs: fetchurl {
|
|
url = "${attrs.src.source or "https://rubygems.org"}/downloads/${attrs.name}-${attrs.version}.gem";
|
|
inherit (attrs.src) sha256;
|
|
};
|
|
|
|
instantiate = (attrs:
|
|
let
|
|
gemPath = map (name: gemset''."${name}") (attrs.dependencies or []);
|
|
fixedAttrs = attrs // (fixes."${attrs.name}" or (const {})) attrs;
|
|
in
|
|
buildRubyGem (
|
|
fixedAttrs // {
|
|
name = "${attrs.name}-${attrs.version}";
|
|
src = fetchers."${attrs.src.type}" attrs;
|
|
inherit ruby gemPath;
|
|
}
|
|
)
|
|
);
|
|
|
|
gemset' = if builtins.isAttrs gemset then gemset else import gemset;
|
|
|
|
gemset'' = lib.flip lib.mapAttrs gemset' (name: attrs:
|
|
if (lib.isDerivation attrs)
|
|
then attrs
|
|
else instantiate (attrs // { inherit name; })
|
|
);
|
|
|
|
in gemset''
|