blob: 0be7253d7be4f6c80879ad29d5b6b4081c648168 (
plain)
1
2
3
4
5
|
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
# nativeBuildInputs is usually what you want -- tools you need to run
nativeBuildInputs = with pkgs.buildPackages; [ meson ninja pkg-config wayland wayland-protocols wlroots dbus ];
}
|