14 lines
226 B
Nix
14 lines
226 B
Nix
with import <nixpkgs> {};
|
|
pkgs.mkShell {
|
|
packages = with pkgs; [
|
|
jq
|
|
hjson # to deal with broken json
|
|
j2cli
|
|
sass
|
|
libxslt
|
|
python3Packages.rich
|
|
python3Packages.httpx
|
|
python3Packages.typer
|
|
];
|
|
}
|