nixpkgs/pkgs/development/lisp-modules-new-obsolete/shell.nix
Kasper Gałkowski bdc000263a lisp-modules: add back the two current implementations
This is to enable a smooth migration to the new one.
2023-04-02 11:14:49 +02:00

8 lines
200 B
Nix

with import ../../../default.nix {};
mkShell {
nativeBuildInputs = [
(lispPackages_new.sbclWithPackages
(ps: with ps; [ alexandria str dexador cl-ppcre sqlite arrow-macros jzon ]))
];
}