ascendancy/shell.nix

26 lines
448 B
Nix
Raw Normal View History

2024-07-30 05:04:58 +00:00
{ pkgs ? import <nixpkgs> { } }:
with pkgs;
mkShell rec {
nativeBuildInputs = [
pkg-config
];
buildInputs = [
2024-07-30 06:17:23 +00:00
udev
alsa-lib
vulkan-loader
xorg.libX11 # To use the x11 feature
xorg.libXcursor
xorg.libXrandr
xorg.libXi
libxkbcommon # To use the wayland feature
wayland
2024-07-30 06:17:11 +00:00
(rust-bin.selectLatestNightlyWith (toolchain: toolchain.default))
2024-07-30 05:04:58 +00:00
];
LD_LIBRARY_PATH = lib.makeLibraryPath buildInputs;
}