From a33042af5b11072393618caa9b55ab6658a46bc3 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sat, 14 Mar 2015 14:16:39 +0100 Subject: [PATCH] haskell-al: jailbreal to fix build with c2hs 0.24.1 --- pkgs/development/haskell-modules/configuration-common.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 58614672491..f08bea73483 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -58,7 +58,8 @@ self: super: { }); # The package doesn't know about the AL include hierarchy. - al = appendConfigureFlag super.al "--extra-include-dirs=${pkgs.openal}/include/AL"; + # https://github.com/phaazon/al/issues/1 + al = doJailbreak (appendConfigureFlag super.al "--extra-include-dirs=${pkgs.openal}/include/AL"); # Depends on code distributed under a non-free license. bindings-yices = dontDistribute super.bindings-yices;