From f459c18b4c497b298ee9b0f354f98b8a413f9b00 Mon Sep 17 00:00:00 2001 From: yukkop Date: Sun, 2 Feb 2025 15:36:44 +0000 Subject: [PATCH] feat: haskell `devShell` --- flake.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index f83b7ba..6063b37 100644 --- a/flake.nix +++ b/flake.nix @@ -74,7 +74,7 @@ default = pkgs.mkShell { buildInputs = (with self.packages.${system}; [ nvim-alias - prettify-log + #prettify-log nvim-pager ]) ++ (with pkgs; [ jq @@ -93,11 +93,14 @@ pkgs.pkgsBuildHost.rust-bin.stable."1.81.0".default; in shells.default // { - nativeBuildInputs = [ + nativeBuildInputs = [ rustToolchain pkgs.pkg-config ]; }; + haskell = shells.default // { + buildInputs = [ pkgs.stack ]; + }; };