mio-ops/profiles/haskell-dev.nix

14 lines
277 B
Nix
Raw Normal View History

2020-03-25 07:31:03 +00:00
# Configuration for Haskell development
{ config, pkgs, ... }:
{
2020-10-08 03:49:54 +00:00
environment.systemPackages = with pkgs.haskellPackages; [
cabal-install # Haskell software automation
ghc # Glasgow Haskell Compiler
hlint # Haskell source linter
2020-03-25 07:31:03 +00:00
];
}