From 13b154aee44bbb55060bfd40c7fc293821919159 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sat, 17 Mar 2018 21:00:56 +0100 Subject: [PATCH] haskell-data-inttrie: patch to fix the build with ghc-8.4.x --- .../development/haskell-modules/configuration-ghc-8.4.x.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-ghc-8.4.x.nix b/pkgs/development/haskell-modules/configuration-ghc-8.4.x.nix index 765dd338618..1f2f2e24650 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-8.4.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-8.4.x.nix @@ -673,6 +673,12 @@ self: super: { stripLen = 1; }); + # Fix missing semigroup instance. + data-inttrie = appendPatch super.data-inttrie (pkgs.fetchpatch + { url = https://github.com/luqui/data-inttrie/pull/5.patch; + sha256 = "1wwdzrbsjqb7ih4nl28sq5bbj125mxf93a74yh4viv5gmxwj606a"; + }); + # 1.3.0.0 does not compile. conduit = self.conduit_1_3_0_1;