diff options
-rw-r--r-- | shells/haskell.nix | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/shells/haskell.nix b/shells/haskell.nix new file mode 100644 index 0000000..c2850fb --- /dev/null +++ b/shells/haskell.nix @@ -0,0 +1,8 @@ +{ pkgs ? import <nixpkgs> { } }: +pkgs.mkShell { + name = "haskell-shell"; + buildInputs = with pkgs; [ + ghc + cabal-install + ]; +} |