From 0865d19ccd6baa36b575ef3dc50b0bed76f6dca6 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sat, 5 Mar 2016 17:49:15 +0300 Subject: [PATCH] haskellPackages.Agda: use older unordered-containers to fix build Fixes #13594. --- 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 4fa6d2f78bbd..01c0298b0f07 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -927,4 +927,7 @@ self: super: { # https://github.com/mainland/language-c-quote/issues/57 language-c-quote = super.language-c-quote.override { alex = self.alex_3_1_4; }; + + # https://github.com/agda/agda/issues/1840 + Agda = super.Agda.override { unordered-containers = self.unordered-containers_0_2_5_1; }; }