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

This commit is contained in:
Judson Lester 2018-11-25 04:38:39 -08:00 committed by zimbatm
parent 6c74e75228
commit 2d5bd339da

View File

@ -89,7 +89,7 @@ let
gemAttrs = composeGemAttrs ruby gems name attrs;
in
if gemAttrs.type == "path" then
pathDerivation gemAttrs
pathDerivation (gemAttrs.source // gemAttrs)
else
buildRubyGem gemAttrs
);