blob: 5bf4edd2d095da9887cc576690f001f3c318ae31 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{ pkgs ? import <nixpkgs> { } }:
pkgs.mkShell {
packages = with pkgs; [
rustup
trunk
cargo-binutils
cargo-leptos
cargo-generate
tailwindcss
binaryen
postgresql
sqlx-cli
];
}
|