From f33c89d23f6ac82789df401b8ddc9f65afc13a0b Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 13 Nov 2014 14:29:24 +0100 Subject: [PATCH] haskell-sdl2: disable Haddock phase to fix the build https://github.com/haskell-game/sdl2/issues/31 --- pkgs/development/libraries/haskell/sdl2/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/libraries/haskell/sdl2/default.nix b/pkgs/development/libraries/haskell/sdl2/default.nix index 29561239d19..2e3eeba018d 100644 --- a/pkgs/development/libraries/haskell/sdl2/default.nix +++ b/pkgs/development/libraries/haskell/sdl2/default.nix @@ -9,6 +9,7 @@ cabal.mkDerivation (self: { buildDepends = [ transformers ]; extraLibraries = [ SDL2 ]; pkgconfigDepends = [ SDL2 ]; + noHaddock = true; meta = { description = "Low-level bindings to SDL2"; license = self.stdenv.lib.licenses.bsd3;