Add shell.nix

This commit is contained in:
2024-12-16 15:27:43 +01:00
parent 6b1fec119b
commit a40883358d

20
shell.nix Normal file
View File

@@ -0,0 +1,20 @@
{pkgs ? import <nixpkgs> {}}:
pkgs.mkShell {
packages = with pkgs; [
zig_0_13
wlroots_0_18
libGL
libevdev
libinput
libxkbcommon
pixman
udev
wayland-protocols
xorg.libX11
pkg-config
wayland
xwayland
valgrind
gdb
];
}