RPGs4_sanity/shell.nix

22 lines
314 B
Nix
Raw Normal View History

2022-10-11 02:53:15 +02:00
with import <nixpkgs> {};
pkgs.mkShell {
packages = with pkgs; [
jq
2022-11-20 00:37:48 +01:00
gron
sd
#hjson # to deal with broken json
2022-10-11 02:53:15 +02:00
j2cli
sass
2022-10-14 00:50:52 +02:00
libxslt
2022-11-20 00:37:48 +01:00
nim
2023-06-24 15:15:38 +02:00
(python3.withPackages (ps: with ps; [
libxml2
rich
httpx
typer
# dev-only
python-lsp-server
]))
];
2022-10-11 02:53:15 +02:00
}