colouncher/shell.nix
2025-12-28 18:03:39 +01:00

8 lines
209 B
Nix

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