blob: aab73ce3ea3cc1518ea00ed6a6d9c629913c1651 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
{ pkgs, ... }:
# TODO(sterni): replace this with upstream haskell-language-server or
# switch to easy-hls-nix as glittershark planned
rec {
hls-nix = { ghc }: import ./hls.nix { inherit pkgs ghc; };
ghc884 = hls-nix { ghc = "ghc884"; };
}
|