From 017a8975e7a32e125df3a99c17141f5280394cde Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 7 Apr 2014 13:25:57 +0200 Subject: [PATCH] haskell-github: patch to fix build with recent versions of conduit Cc: @jwiegley --- pkgs/development/libraries/haskell/github/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/libraries/haskell/github/default.nix b/pkgs/development/libraries/haskell/github/default.nix index 0c1d0b3135d..5fd23514583 100644 --- a/pkgs/development/libraries/haskell/github/default.nix +++ b/pkgs/development/libraries/haskell/github/default.nix @@ -13,6 +13,9 @@ cabal.mkDerivation (self: { unorderedContainers vector ]; jailbreak = true; + patchPhase = '' + sed -i -e '/^import Data.Conduit (ResourceT)/d' Github/Private.hs + ''; meta = { homepage = "https://github.com/fpco/github"; description = "Access to the Github API, v3";