Bugfix: gemsets didn't handle paths correctly (#51002)

This commit is contained in:
Judson Lester
2018-11-25 13:38:38 +01:00
committed by zimbatm
parent 6c74e75228
commit 2d5bd339da
@@ -89,7 +89,7 @@ let
gemAttrs = composeGemAttrs ruby gems name attrs; gemAttrs = composeGemAttrs ruby gems name attrs;
in in
if gemAttrs.type == "path" then if gemAttrs.type == "path" then
pathDerivation gemAttrs pathDerivation (gemAttrs.source // gemAttrs)
else else
buildRubyGem gemAttrs buildRubyGem gemAttrs
); );