haskell-miniball: fix package by adding the missing pkgs.miniball dependency

This commit is contained in:
Erik Rybakken 2016-02-03 18:28:49 +01:00
parent 170715254b
commit 3333a9edab

View file

@ -840,6 +840,9 @@ self: super: {
configurator = dontCheck super.configurator;
# The cabal files for these libraries do not list the required system dependencies.
miniball = overrideCabal super.miniball (drv: {
librarySystemDepends = [ pkgs.miniball ];
});
SDL-image = overrideCabal super.SDL-image (drv: {
librarySystemDepends = [ pkgs.SDL pkgs.SDL_image ] ++ drv.librarySystemDepends or [];
});