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