From 5a2e2db7b27c1dd7892d746164fa31c997d8ee8c Mon Sep 17 00:00:00 2001 From: Philip Potter Date: Tue, 19 Jun 2018 20:33:32 +0100 Subject: [PATCH] dhall-json_1_2_0: fix dependencies dhall-json 1.2.0 requires dhall's version to be at least 1.14.0 and less than 1.15.0. The package wasn't building for me because `dhall` is at version 1.11.1; pinning to `dhall_1_14_0` fixed it. --- pkgs/development/haskell-modules/configuration-common.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index eb55be69188..69d98f761bd 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1051,6 +1051,8 @@ self: super: { strictDeps = true; }); + # dhall-json requires a very particular dhall version + dhall-json_1_2_0 = super.dhall-json_1_2_0.override { dhall = self.dhall_1_14_0; }; } //