From 2a1698df3680c3499643f17301c7f576e9dbd9ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Thu, 1 Apr 2021 11:11:12 +0200 Subject: [PATCH] haskellPackages.colourista: unbreak main motivation: unbreak haskellPackages.hadolint which depends on colourista. --- pkgs/development/haskell-modules/configuration-common.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 23e3aa96eb0..5be231d21c1 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1712,6 +1712,14 @@ self: super: { # Issue reported upstream, no bug tracker url yet. darcs = doJailbreak super.darcs; + # Too strict version bounds on ansi-terminal + # This patch will be contained with the next release (current is 0.1.0.0). + colourista = appendPatch super.colourista + (pkgs.fetchpatch { + url = "https://github.com/kowainik/colourista/commit/15ace92105b56eba4ea3717bd55f733afe5be401.patch"; + sha256 = "sha256-9gJFlyWUkO5sJodDRNuH10I66j8/0ZZIv6nJQkhlA0s="; + }); + # Too strict version bounds on base16-bytestring and http-link-header. # This patch will be merged when next release comes. github = appendPatch super.github (pkgs.fetchpatch {