20 lines
241 B
Nix
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
|
|
];
|
|
}
|