From 99bccb74acaad8ae9d725b5470e8556c34ff8810 Mon Sep 17 00:00:00 2001 From: "William R. Arellano" Date: Tue, 7 Mar 2023 20:32:20 -0500 Subject: [PATCH] misc: add temporary nix file --- shell.nix | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 shell.nix diff --git a/shell.nix b/shell.nix new file mode 100644 index 000000000..18dfd2590 --- /dev/null +++ b/shell.nix @@ -0,0 +1,19 @@ +{ pkgs ? import { } }: + +with pkgs; + +mkShell rec { + nativeBuildInputs = [ + pkg-config + emacs + rust-analyzer + openssl + ripgrep + ]; + buildInputs = [ + udev alsa-lib vulkan-loader + xorg.libX11 xorg.libXcursor xorg.libXi xorg.libXrandr # To use the x11 feature + libxkbcommon wayland # To use the wayland feature + ]; + LD_LIBRARY_PATH = lib.makeLibraryPath buildInputs; +}