Files
zig-a-puzzle-a-day/shell.nix
T
2026-05-05 21:21:31 +02:00

20 lines
241 B
Nix

with import <nixpkgs> {};
mkShell {
packages = [
pkg-config
wayland-scanner
];
buildInputs = [
libc
wayland
libxkbcommon
];
LD_LIBRARY_PATH = lib.makeLibraryPath [
libc
wayland
libxkbcommon
];
}