summaryrefslogtreecommitdiff
path: root/shells/all.nix
blob: 7c087458cbfb9eacdb1643e8aadace2840af8a6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ pkgs ? import <nixpkgs> { } }:

pkgs.mkShell {
  packages = with pkgs; [
    clang
    llvmPackages.bintools
    xorg.libX11.dev
    xorg.libXft.dev
    xorg.libXinerama.dev
    rustc
    rustup
    rust-analyzer
    rustfmt
    trunk
    rustc-wasm32
    dioxus-cli
    cargo
    cargo-binutils
    cargo-leptos
    cargo-generate
    tailwindcss
    binaryen
    postgresql
    sqlx-cli
  ];
}