aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKatharina Fey <kookie@spacekookie.de>2020-03-18 22:13:14 +0100
committerKatharina Fey <kookie@spacekookie.de>2020-03-18 22:13:14 +0100
commit32a202068b177c1218632fee41179f651e3b08e9 (patch)
tree1577f8edc3d2ceae7cbb4137f37bb43264e298c9
parent533abc69936996be0cb333f730a9ed531d2d77d9 (diff)
Adding steam-run to shell.nix
-rw-r--r--shell.nix24
1 files changed, 16 insertions, 8 deletions
diff --git a/shell.nix b/shell.nix
index 232c8003324c..ade2d6e97361 100644
--- a/shell.nix
+++ b/shell.nix
@@ -1,13 +1,21 @@
with import <nixpkgs> {};
stdenv.mkDerivation {
- name = "qaul";
+ name = "rstnode";
buildInputs = with pkgs; [
- rustracer rustup clangStdenv
-
- cargo-watch
-
- # Required for the docs
- mdbook graphviz
- ];
+ rustracer rustup clangStdenv stdenv
+ alsaLib pkg-config libudev steam-run
+ ] ++ (with pkgs.xlibs; [
+ libGL
+ libGLU
+ libGL_driver
+
+ libX11
+ libXcursor
+ libXi
+ libXrandr
+ libXxf86vm
+ libxcb
+ libxkbcommon
+ ]);
}