summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-common.nix
diff options
context:
space:
mode:
authorSilvan Mosberger <infinisil@icloud.com>2018-08-09 20:15:20 +0200
committerSilvan Mosberger <infinisil@icloud.com>2018-08-09 22:28:25 +0200
commit7f12361e62b6d3905373e0800686068a8c322b38 (patch)
tree4ef04e0edb617528080efef759161ebdf6e9d58e /pkgs/development/haskell-modules/configuration-common.nix
parent368169366fa5d9a88870c5dc34c52d79a75735c7 (diff)
downloadnixlib-7f12361e62b6d3905373e0800686068a8c322b38.tar
nixlib-7f12361e62b6d3905373e0800686068a8c322b38.tar.gz
nixlib-7f12361e62b6d3905373e0800686068a8c322b38.tar.bz2
nixlib-7f12361e62b6d3905373e0800686068a8c322b38.tar.lz
nixlib-7f12361e62b6d3905373e0800686068a8c322b38.tar.xz
nixlib-7f12361e62b6d3905373e0800686068a8c322b38.tar.zst
nixlib-7f12361e62b6d3905373e0800686068a8c322b38.zip
yi: 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 5adef91f420a..f29b83c8ff92 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -1114,10 +1114,13 @@ self: super: {
   # needed because of testing-feat >=0.4.0.2 && <1.1
   language-ecmascript = doJailbreak super.language-ecmascript;
 
-  # sexpr is old, broken and has no issue-tracker. Let's fix it the best we can. 
+  # sexpr is old, broken and has no issue-tracker. Let's fix it the best we can.
   sexpr =
     appendPatch (overrideCabal super.sexpr (drv: {
       isExecutable = false;
       libraryHaskellDepends = drv.libraryHaskellDepends ++ [self.QuickCheck];
     })) ./patches/sexpr-0.2.1.patch;
+
+  # Can be removed once yi-language >= 0.18 is in the LTS
+  yi-core = super.yi-core.override { yi-language = self.yi-language_0_18_0; };
 }