From b8bd19791556fec038ec17a466cc43a4a748399f Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 4 May 2015 20:00:23 +0200 Subject: [PATCH] haskell-libconfig: fix build --- 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 b0c628b9763..86d58851fcd 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -118,6 +118,9 @@ self: super: { # Agda-2.4.2.2 needs these overrides to compile. Agda = super.Agda.override { equivalence = self.equivalence_0_2_5; cpphs = self.cpphs_1_18_9; }; + # Help libconfig find it's C language counterpart. + libconfig = (dontCheck super.libconfig).override { config = pkgs.libconfig; }; + # The Haddock phase fails for one reason or another. attoparsec-conduit = dontHaddock super.attoparsec-conduit; blaze-builder-conduit = dontHaddock super.blaze-builder-conduit;