haskellPackages.haskell-language-server: Fix build

This commit is contained in:
Malte Brandy 2021-05-11 19:59:55 +02:00
parent b3c521a562
commit b729cc4565
No known key found for this signature in database
GPG key ID: 226A2D41EF5378C9
2 changed files with 21 additions and 2 deletions

View file

@ -81,8 +81,10 @@ default-package-overrides:
# e. g. https://github.com/diagrams/diagrams-core/issues/115
# We can keep this pin presumably until base 4.15
- monoid-extras < 0.6
- ghcide == 1.2.* # 2021-05-11: Pin for hls 1.1.0
- hls-plugin-api == 1.1.0.0 # 2021-05-11: Pin for hls 1.1.0
# 2021-05-11: Pin for hls 1.1.0
- ghcide == 1.2.*
- hls-plugin-api == 1.1.0.0
- hls-explicit-imports-plugin < 1.0.0.2
extra-packages:
- base16-bytestring < 1 # required for cabal-install etc.

View file

@ -129784,6 +129784,22 @@ self: {
}) {};
"hls-explicit-imports-plugin" = callPackage
({ mkDerivation, aeson, base, containers, deepseq, ghc, ghcide
, hls-plugin-api, lsp, lsp-types, shake, text, unordered-containers
}:
mkDerivation {
pname = "hls-explicit-imports-plugin";
version = "1.0.0.1";
sha256 = "1ygs667pkc3zn66yqz6ssrxifhrc906sddmcgjnkprk7zappk2nc";
libraryHaskellDepends = [
aeson base containers deepseq ghc ghcide hls-plugin-api lsp
lsp-types shake text unordered-containers
];
description = "Explicit imports plugin for Haskell Language Server";
license = lib.licenses.asl20;
}) {};
"hls-explicit-imports-plugin_1_0_0_2" = callPackage
({ mkDerivation, aeson, base, containers, deepseq, ghc, ghcide
, hls-graph, hls-plugin-api, lsp, lsp-types, text
, unordered-containers
@ -129798,6 +129814,7 @@ self: {
];
description = "Explicit imports plugin for Haskell Language Server";
license = lib.licenses.asl20;
hydraPlatforms = lib.platforms.none;
}) {};
"hls-graph" = callPackage