summaryrefslogtreecommitdiff
path: root/shells/dev.nix
blob: 044375a5b728277f28e0b10e8fb861045106a202 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ pkgs ? import <nixpkgs> {} }:

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