website/shell.nix

15 lines
176 B
Nix
Raw Normal View History

2024-06-10 00:19:32 +02:00
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
2024-06-13 23:35:56 +02:00
buildInputs = with pkgs; [
cargo
clippy
rustfmt
rust-analyzer
pagefind
esbuild
nodePackages.pnpm
python3
];
2024-06-10 00:19:32 +02:00
}