first haskell template

This commit is contained in:
jsz4n
2024-02-06 13:15:06 +01:00
parent 580651eb55
commit 58be8fc605
2 changed files with 46 additions and 0 deletions

13
haskell/shell.nix Normal file
View File

@@ -0,0 +1,13 @@
{ pkgs ? import <nixpkgs> {}}:
pkgs.mkShell rec {
buildInputs = with pkgs; [
haskell.compiler.ghc96
haskellPackages.cabal-install
haskellPackages.stack
]
;
shellHook = ''
'';
}