From 915660c8a7d4e0d0acdcaedc8cd12cf5f4c27737 Mon Sep 17 00:00:00 2001 From: jmug Date: Wed, 18 Dec 2024 14:56:27 -0800 Subject: [PATCH] Add Standard ML of NJ to the dev shell flake. Signed-off-by: jmug --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 3bd0285..815061f 100644 --- a/flake.nix +++ b/flake.nix @@ -18,7 +18,7 @@ in { devShells.default = pkgs.mkShell { - packages = with pkgs; [ ]; + packages = with pkgs; [ smlnj ]; }; } );