mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-17 18:34:38 +00:00
19 lines
264 B
Nix
19 lines
264 B
Nix
|
let
|
||
|
pkgs = import ../../../. { };
|
||
|
in
|
||
|
pkgs.mkShell {
|
||
|
nativeBuildInputs = [
|
||
|
(pkgs.sbcl.withPackages (
|
||
|
ps: with ps; [
|
||
|
alexandria
|
||
|
str
|
||
|
dexador
|
||
|
cl-ppcre
|
||
|
sqlite
|
||
|
arrow-macros
|
||
|
jzon
|
||
|
]
|
||
|
))
|
||
|
];
|
||
|
}
|