aboutsummaryrefslogtreecommitdiff
path: root/shell.nix
blob: ade2d6e973616685d877c17bd4c959c96c2de672 (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; [
    rustracer rustup clangStdenv stdenv
    alsaLib pkg-config libudev steam-run
  ] ++ (with pkgs.xlibs; [
    libGL
    libGLU
    libGL_driver
    
    libX11
    libXcursor
    libXi
    libXrandr
    libXxf86vm
    libxcb
    libxkbcommon
  ]);
}