RPGs4_sanity/shell.nix

14 lines
226 B
Nix
Raw Normal View History

2022-10-11 02:53:15 +02:00
with import <nixpkgs> {};
pkgs.mkShell {
packages = with pkgs; [
jq
hjson # to deal with broken json
j2cli
sass
2022-10-14 00:50:52 +02:00
libxslt
2022-10-11 02:53:15 +02:00
python3Packages.rich
python3Packages.httpx
python3Packages.typer
];
}