1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-22 17:31:04 +03:00
nixpkgs/pkgs/development/lisp-modules/shell.nix

19 lines
264 B
Nix
Raw Permalink Normal View History

let
pkgs = import ../../../. { };
in
pkgs.mkShell {
nativeBuildInputs = [
(pkgs.sbcl.withPackages (
ps: with ps; [
alexandria
str
dexador
cl-ppcre
sqlite
arrow-macros
jzon
]
))
];
}