Initial Commit

This commit is contained in:
Yiyun Liu 2025-01-05 17:24:58 -05:00
commit d545e3b85f
15 changed files with 148 additions and 0 deletions

10
default.nix Normal file
View file

@ -0,0 +1,10 @@
let pkgs = import <nixpkgs> { };
in
pkgs.haskellPackages.developPackage {
root = ./.;
modifier = drv:
pkgs.haskell.lib.addBuildTools drv (with pkgs.haskellPackages;
[ cabal-install
haskell-language-server
]);
}