haskell-mysql: manually pass the correct "lib" derivation
Apparently, automatic propagation to "mysql" still doesn't work. Anyway, it's nicer to link "lib" only anyway.
This commit is contained in:
parent
e3925a3478
commit
696513be2c
|
@ -26,7 +26,7 @@ self: super: {
|
|||
hslua = super.hslua.override { lua = pkgs.lua5_1; };
|
||||
|
||||
# Use the default version of mysql to build this package (which is actually mariadb).
|
||||
mysql = super.mysql.override { inherit (pkgs) mysql; };
|
||||
mysql = super.mysql.override { mysql = pkgs.mysql.lib; };
|
||||
|
||||
# Please also remove optparse-applicative special case from
|
||||
# cabal2nix/hackage2nix.hs when removing the following.
|
||||
|
|
Loading…
Reference in New Issue