summaryrefslogtreecommitdiff
path: root/pkgs/development/lisp-modules/shell.nix
blob: 811e8d3c1d28a92062c1edd60c926dcf47bf35c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
let
  pkgs = import ../../../. { };
  inherit (pkgs) mkShellNoCC sbcl nixfmt-rfc-style;
in
mkShellNoCC {
  packages = [
    nixfmt-rfc-style
    (sbcl.withPackages (
      ps:
      builtins.attrValues {
        inherit (ps)
          alexandria
          str
          dexador
          cl-ppcre
          sqlite
          arrow-macros
          jzon
          ;
      }
    ))
  ];
}