feat(3p): add haskell-language-server

Add expression for building haskell-language-server, based on a vendored
version of https://github.com/korayal/hls-nix with hashes updated to
work with our nixpkgs version and ghc 8.8.3. Also add that to CI
builds, so whitby will build it for me (thanks whitby).

Change-Id: I373f8a7cb67974b8aa043b116436c074591b8d57
Reviewed-on: https://cl.tvl.fyi/c/depot/+/897
Tested-by: BuildkiteCI
Reviewed-by: tazjin <mail@tazj.in>
Reviewed-by: BuildkiteCI
This commit is contained in:
Griffin Smith 2020-07-03 11:51:33 -04:00 committed by glittershark
parent 10180e70ec
commit 64ce8522fe
4 changed files with 296 additions and 0 deletions

View file

@ -0,0 +1,6 @@
{ pkgs, ... }:
rec {
hls-nix = { ghc }: import ./hls.nix { inherit pkgs ghc; };
ghc883 = hls-nix { ghc = "ghc883"; };
}