nixos-config/system/desktop/home-manager/xmonad/lsp.nix
2019-11-10 18:15:06 +01:00

14 lines
369 B
Nix

{ pkgs ? import <nixpkgs> {} }:
let
all-hies = import (fetchTarball "https://github.com/infinisil/all-hies/tarball/master") {};
in
pkgs.mkShell {
buildInputs = with pkgs; [
haskellPackages.hoogle
haskellPackages.hindent
haskellPackages.hlint
haskellPackages.stylish-haskell
(all-hies.selection { selector = p: {inherit (p) ghc865; }; })
];
}