Set up nix shell, aniseed

This commit is contained in:
Barry Moore 2023-01-27 15:08:37 -05:00
parent 6db31714b5
commit 1f6f0c40e8
7 changed files with 139 additions and 0 deletions

8
nix/shell.nix Normal file
View file

@ -0,0 +1,8 @@
{pkgs, ...}:
pkgs.mkShell {
buildInputs = with pkgs; [
fennel
fnlfmt
alejandra
];
}