about summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-common.nix
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2017-05-26 20:32:39 +0200
committerPeter Simons <simons@cryp.to>2017-05-27 10:33:37 +0200
commitd67214d8f7f0c9d1faf68d144ab365b8040c6ac3 (patch)
treed2f2897a7bbe6df404c3658803f4c57fd2ed4ff2 /pkgs/development/haskell-modules/configuration-common.nix
parentdfe23fc584f18de2970396b5fa014144f4fb7383 (diff)
downloadnixlib-d67214d8f7f0c9d1faf68d144ab365b8040c6ac3.tar
nixlib-d67214d8f7f0c9d1faf68d144ab365b8040c6ac3.tar.gz
nixlib-d67214d8f7f0c9d1faf68d144ab365b8040c6ac3.tar.bz2
nixlib-d67214d8f7f0c9d1faf68d144ab365b8040c6ac3.tar.lz
nixlib-d67214d8f7f0c9d1faf68d144ab365b8040c6ac3.tar.xz
nixlib-d67214d8f7f0c9d1faf68d144ab365b8040c6ac3.tar.zst
nixlib-d67214d8f7f0c9d1faf68d144ab365b8040c6ac3.zip
liquidhaskell: fix build
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-common.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index f9206e9c4a08..f8052463c645 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -332,7 +332,6 @@ self: super: {
   language-slice = dontCheck super.language-slice;
   ldap-client = dontCheck super.ldap-client;
   lensref = dontCheck super.lensref;
-  liquidhaskell = dontCheck super.liquidhaskell;
   lucid = dontCheck super.lucid; #https://github.com/chrisdone/lucid/issues/25
   lvmrun = disableHardening (dontCheck super.lvmrun) ["format"];
   memcache = dontCheck super.memcache;
@@ -858,4 +857,8 @@ self: super: {
 
   # https://github.com/danidiaz/tailfile-hinotify/issues/2
   tailfile-hinotify = dontCheck super.tailfile-hinotify;
+
+  # build liquidhaskell with the proper (old) aeson version
+  liquidhaskell = super.liquidhaskell.override { aeson = self.aeson_0_11_3_0; };
+
 }