website/shell.nix

19 lines
267 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
esbuild
2024-07-02 00:34:13 +02:00
nodejs
2024-06-13 23:35:56 +02:00
nodePackages.pnpm
2024-06-28 18:18:25 +02:00
pagefind
2024-06-13 23:35:56 +02:00
python3
2024-06-28 18:18:25 +02:00
rust-analyzer
rustc
rustfmt
2024-06-13 23:35:56 +02:00
];
2024-06-28 18:18:25 +02:00
RUST_SRC_PATH = "${pkgs.rust.packages.stable.rustPlatform.rustLibSrc}";
2024-06-10 00:19:32 +02:00
}