This commit is contained in:
2024-07-16 12:59:22 -06:00
commit d0af37ab9c
66 changed files with 9675 additions and 0 deletions

12
download_hs/default.nix Normal file
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
]);
}