summary refs log tree commit diff
diff options
context:
space:
mode:
authorDomen Kožar <domen@dev.si>2018-07-02 19:45:02 +0100
committerDomen Kožar <domen@dev.si>2018-07-02 19:45:02 +0100
commita260b3d681164bedaeb90fd578390147799d638c (patch)
tree071a4bc393c81df039fba943890a5d3ec3266893
parentccfe1b5713ffe10cd2242766a90074b423f48fa5 (diff)
downloadnixpkgs-a260b3d681164bedaeb90fd578390147799d638c.tar
nixpkgs-a260b3d681164bedaeb90fd578390147799d638c.tar.gz
nixpkgs-a260b3d681164bedaeb90fd578390147799d638c.tar.bz2
nixpkgs-a260b3d681164bedaeb90fd578390147799d638c.tar.lz
nixpkgs-a260b3d681164bedaeb90fd578390147799d638c.tar.xz
nixpkgs-a260b3d681164bedaeb90fd578390147799d638c.tar.zst
nixpkgs-a260b3d681164bedaeb90fd578390147799d638c.zip
dhall-nix: fix build
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index 4e8f43f337e..ef7e8e4d4e5 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;