From 4ed08031db4a77a577dc1a8c27310bdb54fa25a4 Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Sun, 27 Mar 2022 11:10:34 +0200 Subject: [PATCH] haskellPackages.mattermost-api: build with aeson 1.5 This applies the same override as achieved via overrideScope from matterhorn also for the mattermost-api attribute. --- pkgs/development/haskell-modules/configuration-common.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index c3fc23815d57..271c2acd7eb1 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -326,6 +326,7 @@ self: super: { lensref = dontCheck super.lensref; lvmrun = disableHardening ["format"] (dontCheck super.lvmrun); matplotlib = dontCheck super.matplotlib; + # https://github.com/matterhorn-chat/matterhorn/issues/679 they do not want to be on stackage matterhorn = doJailbreak (super.matterhorn.overrideScope (self: super: { brick = self.brick_0_64_2; @@ -333,6 +334,10 @@ self: super: { # https://github.com/matterhorn-chat/matterhorn/issues/759 aeson = self.aeson_1_5_6_0; })); + mattermost-api = super.mattermost-api.override { + aeson = self.aeson_1_5_6_0; + }; + memcache = dontCheck super.memcache; metrics = dontCheck super.metrics; milena = dontCheck super.milena;