From 3333a9edab990e13ec38c3b17e305ce53787e6eb Mon Sep 17 00:00:00 2001 From: Erik Rybakken Date: Wed, 3 Feb 2016 18:28:49 +0100 Subject: [PATCH] haskell-miniball: fix package by adding the missing pkgs.miniball dependency --- pkgs/development/haskell-modules/configuration-common.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 1f746802c7b..bbf98df8079 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -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 []; });