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

14 lines
369 B
Nix
Raw Normal View History

2019-10-24 02:20:38 +02:00
{ 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
2019-11-09 17:14:52 +01:00
(all-hies.selection { selector = p: {inherit (p) ghc865; }; })
2019-10-24 02:20:38 +02:00
];
}