nixos-config/system/desktop/home-manager/xmonad/lsp.nix

15 lines
379 B
Nix
Raw Normal View History

2019-12-20 05:54:26 +01:00
{ pkgs ? import <nixpkgs> { } }:
2019-10-24 02:20:38 +02:00
let
2019-12-20 05:54:26 +01:00
all-hies =
import (fetchTarball "https://github.com/infinisil/all-hies/tarball/master")
{ };
in pkgs.mkShell {
2019-10-24 02:20:38 +02:00
buildInputs = with pkgs; [
haskellPackages.hoogle
haskellPackages.hindent
haskellPackages.hlint
haskellPackages.stylish-haskell
2019-12-20 05:54:26 +01:00
(all-hies.selection { selector = p: { inherit (p) ghc865; }; })
2019-10-24 02:20:38 +02:00
];
}