changes before turning into a flake

This commit is contained in:
2024-10-31 23:43:37 -06:00
parent cf627acdb0
commit bd50a7ce71
77 changed files with 252 additions and 131 deletions

View File

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