colouncher/shell.nix
2026-01-01 02:44:33 +01:00

9 lines
227 B
Nix

{ pkgs ? import <nixpkgs> { } }: pkgs.mkShell rec {
packages = [ pkgs.pkg-config ];
buildInputs = with pkgs; [
wayland
libxkbcommon
vulkan-loader
];
LD_LIBRARY_PATH = pkgs.lib.makeLibraryPath buildInputs;
}