+102
−100
Loading
Any attribute concatenation onto the result of mkDerivation will break
overrideability.
In this case, `(mariadb.overrideAttrs { }).client` will complain,
because `client` is not available, anymore.
This commit fixes that. `.server` will be what you expect after the
override, while `.client` will just expose the un-overriden client as
before. Making the `overrideAttrs` also affect the client in a sensible
well is unfortunately not easily done. At all.