diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 4e8f43f337e6..ef7e8e4d4e57 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1065,6 +1065,9 @@ self: super: { # dhall-json requires a very particular dhall version dhall-json_1_2_1 = super.dhall-json_1_2_1.override { dhall = self.dhall_1_15_0; }; + # dhall-nix requires a very particular dhall version + dhall-nix = super.dhall-nix.override { dhall = self.dhall_1_15_0; }; + # https://github.com/fpco/streaming-commons/issues/49 streaming-commons = dontCheck super.streaming-commons;