feat: haskell devShell

This commit is contained in:
2025-02-02 15:36:44 +00:00
parent ad0661bdf1
commit f459c18b4c

View File

@@ -74,7 +74,7 @@
default = pkgs.mkShell { default = pkgs.mkShell {
buildInputs = (with self.packages.${system}; [ buildInputs = (with self.packages.${system}; [
nvim-alias nvim-alias
prettify-log #prettify-log
nvim-pager nvim-pager
]) ++ (with pkgs; [ ]) ++ (with pkgs; [
jq jq
@@ -98,6 +98,9 @@
pkgs.pkg-config pkgs.pkg-config
]; ];
}; };
haskell = shells.default // {
buildInputs = [ pkgs.stack ];
};
}; };