2017-05-10 18:00:21 +01:00
|
|
|
{ lib, gemConfig, ... }:
|
2018-12-11 21:18:22 +00:00
|
|
|
|
|
|
|
let
|
2018-12-11 21:19:32 +00:00
|
|
|
inherit (lib) attrValues concatMap converge filterAttrs getAttrs
|
|
|
|
intersectLists;
|
2018-12-11 21:18:22 +00:00
|
|
|
|
|
|
|
in rec {
|
2017-05-31 17:44:46 +01:00
|
|
|
bundlerFiles = {
|
|
|
|
gemfile ? null
|
|
|
|
, lockfile ? null
|
|
|
|
, gemset ? null
|
|
|
|
, gemdir ? null
|
|
|
|
, ...
|
|
|
|
}: {
|
2017-06-26 01:40:22 +01:00
|
|
|
inherit gemdir;
|
|
|
|
|
2017-05-31 17:44:46 +01:00
|
|
|
gemfile =
|
|
|
|
if gemfile == null then assert gemdir != null; gemdir + "/Gemfile"
|
|
|
|
else gemfile;
|
|
|
|
|
|
|
|
lockfile =
|
|
|
|
if lockfile == null then assert gemdir != null; gemdir + "/Gemfile.lock"
|
|
|
|
else lockfile;
|
|
|
|
|
|
|
|
gemset =
|
|
|
|
if gemset == null then assert gemdir != null; gemdir + "/gemset.nix"
|
|
|
|
else gemset;
|
|
|
|
};
|
|
|
|
|
2018-12-11 21:18:22 +00:00
|
|
|
filterGemset = { ruby, groups, ... }: gemset:
|
|
|
|
let
|
|
|
|
platformGems = filterAttrs (_: platformMatches ruby) gemset;
|
|
|
|
directlyMatchingGems = filterAttrs (_: groupMatches groups) platformGems;
|
|
|
|
|
|
|
|
expandDependencies = gems:
|
|
|
|
let
|
|
|
|
depNames = concatMap (gem: gem.dependencies or []) (attrValues gems);
|
|
|
|
deps = getAttrs depNames platformGems;
|
|
|
|
in
|
|
|
|
gems // deps;
|
|
|
|
in
|
|
|
|
converge expandDependencies directlyMatchingGems;
|
2017-05-01 17:07:42 +01:00
|
|
|
|
2018-07-20 20:54:05 +01:00
|
|
|
platformMatches = {rubyEngine, version, ...}: attrs: (
|
2017-04-25 02:45:00 +01:00
|
|
|
!(attrs ? "platforms") ||
|
2017-05-12 17:44:39 +01:00
|
|
|
builtins.length attrs.platforms == 0 ||
|
2017-04-25 02:45:00 +01:00
|
|
|
builtins.any (platform:
|
2017-05-10 18:00:21 +01:00
|
|
|
platform.engine == rubyEngine &&
|
2017-05-12 17:47:00 +01:00
|
|
|
(!(platform ? "version") || platform.version == version.majMin)
|
2017-04-25 02:45:00 +01:00
|
|
|
) attrs.platforms
|
|
|
|
);
|
|
|
|
|
2018-12-11 21:19:32 +00:00
|
|
|
groupMatches = groups: attrs:
|
|
|
|
groups == null || !(attrs ? "groups") ||
|
2018-12-11 21:22:45 +00:00
|
|
|
(intersectLists (groups ++ [ "default" ]) attrs.groups) != [];
|
2017-04-25 02:45:00 +01:00
|
|
|
|
|
|
|
applyGemConfigs = attrs:
|
|
|
|
(if gemConfig ? "${attrs.gemName}"
|
|
|
|
then attrs // gemConfig."${attrs.gemName}" attrs
|
|
|
|
else attrs);
|
|
|
|
|
2017-05-04 04:27:42 +01:00
|
|
|
genStubsScript = { lib, ruby, confFiles, bundler, groups, binPaths, ... }: ''
|
2017-04-25 02:45:00 +01:00
|
|
|
${ruby}/bin/ruby ${./gen-bin-stubs.rb} \
|
|
|
|
"${ruby}/bin/ruby" \
|
|
|
|
"${confFiles}/Gemfile" \
|
|
|
|
"$out/${ruby.gemPath}" \
|
|
|
|
"${bundler}/${ruby.gemPath}" \
|
|
|
|
${lib.escapeShellArg binPaths} \
|
|
|
|
${lib.escapeShellArg groups}
|
|
|
|
'';
|
|
|
|
|
|
|
|
pathDerivation = { gemName, version, path, ... }:
|
|
|
|
let
|
|
|
|
res = {
|
|
|
|
type = "derivation";
|
|
|
|
bundledByPath = true;
|
|
|
|
name = gemName;
|
|
|
|
version = version;
|
|
|
|
outPath = path;
|
|
|
|
outputs = [ "out" ];
|
|
|
|
out = res;
|
|
|
|
outputName = "out";
|
|
|
|
};
|
|
|
|
in res;
|
|
|
|
|
2017-10-05 09:10:57 +01:00
|
|
|
composeGemAttrs = ruby: gems: name: attrs: ((removeAttrs attrs ["platforms"]) // {
|
2017-04-25 02:45:00 +01:00
|
|
|
inherit ruby;
|
2017-10-05 09:10:57 +01:00
|
|
|
inherit (attrs.source) type;
|
|
|
|
source = removeAttrs attrs.source ["type"];
|
2017-04-25 02:45:00 +01:00
|
|
|
gemName = name;
|
|
|
|
gemPath = map (gemName: gems."${gemName}") (attrs.dependencies or []);
|
|
|
|
});
|
|
|
|
}
|