Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / lisp-modules / shell.nix
blobd59cec77fd1adfbd7e3742f346506cfdaf6491e8
1 let
2   pkgs = import ../../../. {};
3 in pkgs.mkShell {
4   nativeBuildInputs = [
5     (pkgs.sbcl.withPackages
6       (ps: with ps; [
7         alexandria
8         str
9         dexador
10         cl-ppcre
11         sqlite
12         arrow-macros
13         jzon
14       ]))
15   ];