21 lines
285 B
Nix
21 lines
285 B
Nix
with import <nixpkgs> {};
|
|
pkgs.mkShell {
|
|
packages = with pkgs; [
|
|
jq
|
|
gron
|
|
sd
|
|
#hjson # to deal with broken json
|
|
j2cli
|
|
sass
|
|
libxslt
|
|
nim
|
|
] ++ (with python3Packages; [
|
|
libxml2
|
|
rich
|
|
httpx
|
|
typer
|
|
# dev-only
|
|
python-lsp-server
|
|
]);
|
|
}
|