summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-common.nix
diff options
context:
space:
mode:
authorDomen Kožar <domen@dev.si>2019-09-28 21:33:14 +0200
committerDomen Kožar <domen@dev.si>2019-09-28 21:33:14 +0200
commite04dae50cfb42650daf4b71ba23f11c99da8195b (patch)
tree6357b62c32d267a7b81daa9cff10343f5863efd8 /pkgs/development/haskell-modules/configuration-common.nix
parent0ef1b75f6eaba16c8c30fef1b6ec2b56f5c640e6 (diff)
downloadnixpkgs-e04dae50cfb42650daf4b71ba23f11c99da8195b.tar
nixpkgs-e04dae50cfb42650daf4b71ba23f11c99da8195b.tar.gz
nixpkgs-e04dae50cfb42650daf4b71ba23f11c99da8195b.tar.bz2
nixpkgs-e04dae50cfb42650daf4b71ba23f11c99da8195b.tar.lz
nixpkgs-e04dae50cfb42650daf4b71ba23f11c99da8195b.tar.xz
nixpkgs-e04dae50cfb42650daf4b71ba23f11c99da8195b.tar.zst
nixpkgs-e04dae50cfb42650daf4b71ba23f11c99da8195b.zip
fix dhall_1_26_0 reference
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-common.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index 75ad9337b82..e9d0593314a 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -1035,6 +1035,8 @@ self: super: {
     generateOptparseApplicativeCompletion "dhall" (
       dontCheck super.dhall
   );
+  dhall_1_26_1 = dontCheck super.dhall_1_26_1;
+
 
   # Missing test files in source distribution, fixed once 1.4.0 is bumped
   # https://github.com/dhall-lang/dhall-haskell/pull/997
@@ -1191,8 +1193,8 @@ self: super: {
   temporary-resourcet = doJailbreak super.temporary-resourcet;
 
   # Requires dhall >= 1.23.0
-  ats-pkg = super.ats-pkg.override { dhall = self.dhall_1_26_0; };
-  dhall-to-cabal = super.dhall-to-cabal.override { dhall = self.dhall_1_26_0; };
+  ats-pkg = super.ats-pkg.override { dhall = self.dhall_1_26_1; };
+  dhall-to-cabal = super.dhall-to-cabal.override { dhall = self.dhall_1_26_1; };
 
   # Test suite doesn't work with current QuickCheck
   # https://github.com/pruvisto/heap/issues/11