diff options
author | Peter Simons <simons@cryp.to> | 2019-06-07 11:59:57 +0200 |
---|---|---|
committer | Peter Simons <simons@cryp.to> | 2019-06-07 11:59:57 +0200 |
commit | d28f44c56c249dd7a57641f8e5c9c72fa883eab1 (patch) | |
tree | abea01ea0a744ac1a3d6fa39694e26c3646396c0 /pkgs | |
parent | 7212b3317526e3d691302df4eadb0d9809d05893 (diff) |
haskell-dhall: fix broken overrides
Diffstat (limited to 'pkgs')
-rw-r--r-- | pkgs/development/haskell-modules/configuration-common.nix | 4 | ||||
-rw-r--r-- | pkgs/development/haskell-modules/configuration-nix.nix | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index d024fe18b0ee8..26e0f56d506cf 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1264,8 +1264,8 @@ self: super: { temporary-resourcet = doJailbreak super.temporary-resourcet; # Requires dhall >= 1.23.0 - ats-pkg = super.ats-pkg.override { dhall = self.dhall_1_23_0; }; - dhall-to-cabal = super.dhall-to-cabal.override { dhall = self.dhall_1_23_0; }; + ats-pkg = super.ats-pkg.override { dhall = self.dhall_1_24_0; }; + dhall-to-cabal = super.dhall-to-cabal.override { dhall = self.dhall_1_24_0; }; # Test suite doesn't work with current QuickCheck # https://github.com/pruvisto/heap/issues/11 diff --git a/pkgs/development/haskell-modules/configuration-nix.nix b/pkgs/development/haskell-modules/configuration-nix.nix index 13a60af5a6488..0d15cde3e6cf0 100644 --- a/pkgs/development/haskell-modules/configuration-nix.nix +++ b/pkgs/development/haskell-modules/configuration-nix.nix @@ -579,6 +579,6 @@ self: super: builtins.intersectAttrs super { snap-server = dontCheck super.snap-server; # Tests require internet - dhall_1_23_0 = dontCheck super.dhall_1_23_0; + dhall_1_24_0 = dontCheck super.dhall_1_24_0; } |