summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2016-11-15 09:50:43 +0100
committerPeter Simons <simons@cryp.to>2016-11-16 11:16:10 +0100
commitfcb6a18f374387498e7f892ade444527ae93e5ec (patch)
tree1de8d954fcd33799448aa176fa0c72f10b8a3030
parent1e43c159e2d1459cdd8b9a62e88b11b3c71039b8 (diff)
downloadnixpkgs-fcb6a18f374387498e7f892ade444527ae93e5ec.tar
nixpkgs-fcb6a18f374387498e7f892ade444527ae93e5ec.tar.gz
nixpkgs-fcb6a18f374387498e7f892ade444527ae93e5ec.tar.bz2
nixpkgs-fcb6a18f374387498e7f892ade444527ae93e5ec.tar.lz
nixpkgs-fcb6a18f374387498e7f892ade444527ae93e5ec.tar.xz
nixpkgs-fcb6a18f374387498e7f892ade444527ae93e5ec.tar.zst
nixpkgs-fcb6a18f374387498e7f892ade444527ae93e5ec.zip
haskell-http-api-data: fix reference in configuration-common.nix
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix6
1 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 37bc19a2b21..095555bfec4 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -1018,14 +1018,14 @@ self: super: {
 
   # http-api-data_0.3.x requires QuickCheck > 2.9, but overriding that version
   # is hard because of transitive dependencies, so we just disable tests.
-  http-api-data_0_3_2 = dontCheck super.http-api-data_0_3_2;
+  http-api-data_0_3_3 = dontCheck super.http-api-data_0_3_3;
 
   # Fix build for latest versions of servant and servant-client.
   servant_0_9_1_1 = super.servant_0_9_1_1.overrideScope (self: super: {
-    http-api-data = self.http-api-data_0_3_2;
+    http-api-data = self.http-api-data_0_3_3;
   });
   servant-client_0_9_1_1 = super.servant-client_0_9_1_1.overrideScope (self: super: {
-    http-api-data = self.http-api-data_0_3_2;
+    http-api-data = self.http-api-data_0_3_3;
     servant-server = self.servant-server_0_9_1_1;
     servant = self.servant_0_9_1_1;
   });