aboutsummaryrefslogtreecommitdiff
path: root/games/rstnode/shell.nix
blob: 98465394e67e843460d83f22152801061e9ff5ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
with import <nixpkgs> {};

stdenv.mkDerivation {
  name = "rstnode";
  buildInputs = with pkgs; [
    rustc cargo clangStdenv rust-analyzer rustfmt
    alsaLib pkg-config libudev 
  ] ++ (with pkgs.xlibs; [
    libGL
    libGLU
    libGL_driver
    
    libX11
    libXcursor
    libXi
    libXrandr
    libXxf86vm
    libxcb
    libxkbcommon
  ]);
}