mirror of
https://github.com/Noratrieb/colouncher.git
synced 2026-03-14 13:16:10 +01:00
8 lines
209 B
Nix
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;
|
|
}
|