summary refs log tree commit diff
path: root/pkgs/development/lisp-modules/shell.nix
blob: d59cec77fd1adfbd7e3742f346506cfdaf6491e8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
let
  pkgs = import ../../../. {};
in pkgs.mkShell {
  nativeBuildInputs = [
    (pkgs.sbcl.withPackages
      (ps: with ps; [
        alexandria
        str
        dexador
        cl-ppcre
        sqlite
        arrow-macros
        jzon
      ]))
  ];
}