repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git]
/
pkgs
/
development
/
lisp-modules
/
shell.nix
blob
d59cec77fd1adfbd7e3742f346506cfdaf6491e8
1
let
2
pkgs = import ../../../. {};
3
in pkgs.mkShell {
4
nativeBuildInputs = [
5
(pkgs.sbcl.withPackages
6
(ps: with ps; [
7
alexandria
8
str
9
dexador
10
cl-ppcre
11
sqlite
12
arrow-macros
13
jzon
14
]))
15
];
16
}