summary refs log tree commit diff
path: root/pkgs/development/haskell-modules
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2019-12-26 12:49:52 +0100
committerPeter Simons <simons@cryp.to>2019-12-27 20:37:13 +0100
commitdbcb34900a44f5652d5e87e5d3e8b89fd7bf9fda (patch)
tree99ed830fb858fd3a2d04850b2bdcb0c284b78a22 /pkgs/development/haskell-modules
parent6010ce05b7f7d15b5a8789c18d3668c23c8e4989 (diff)
downloadnixpkgs-dbcb34900a44f5652d5e87e5d3e8b89fd7bf9fda.tar
nixpkgs-dbcb34900a44f5652d5e87e5d3e8b89fd7bf9fda.tar.gz
nixpkgs-dbcb34900a44f5652d5e87e5d3e8b89fd7bf9fda.tar.bz2
nixpkgs-dbcb34900a44f5652d5e87e5d3e8b89fd7bf9fda.tar.lz
nixpkgs-dbcb34900a44f5652d5e87e5d3e8b89fd7bf9fda.tar.xz
nixpkgs-dbcb34900a44f5652d5e87e5d3e8b89fd7bf9fda.tar.zst
nixpkgs-dbcb34900a44f5652d5e87e5d3e8b89fd7bf9fda.zip
haskell-lsp-test: update override to the latest version
Diffstat (limited to 'pkgs/development/haskell-modules')
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index 850c904ea28..feacfad0414 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -1337,9 +1337,9 @@ self: super: {
   spacecookie = super.spacecookie.override { systemd = self.systemd_2_2_0; };
 
   # ghcide needs the latest versions of haskell-lsp.
-  ghcide = super.ghcide.override { haskell-lsp = self.haskell-lsp_0_18_0_0; lsp-test = self.lsp-test_0_8_2_0; };
+  ghcide = super.ghcide.override { haskell-lsp = self.haskell-lsp_0_18_0_0; lsp-test = self.lsp-test_0_9_0_0; };
   haskell-lsp_0_18_0_0 = super.haskell-lsp_0_18_0_0.override { haskell-lsp-types = self.haskell-lsp-types_0_18_0_0; };
-  lsp-test_0_8_2_0 = (dontCheck super.lsp-test_0_8_2_0).override { haskell-lsp = self.haskell-lsp_0_18_0_0; };
+  lsp-test_0_9_0_0 = (dontCheck super.lsp-test_0_9_0_0).override { haskell-lsp = self.haskell-lsp_0_18_0_0; };
 
   # 2019-12-19 - glirc wants regex-tdfa >=1.3 which results in errors with regex-base which errors more
   # hoping to make a proper derivation with plugins enabled and more reliable building -- kiwi