mirror of
https://codeberg.org/FabricSoul/dwl.git
synced 2025-08-03 12:10:22 -04:00
17 lines
265 B
Nix
17 lines
265 B
Nix
{pkgs ? import <nixpkgs> {}}:
|
|
pkgs.mkShell {
|
|
packages = with pkgs; [
|
|
gnumake
|
|
pkg-config
|
|
wayland
|
|
xwayland
|
|
xorg.libxcb
|
|
xorg.xcbutilwm
|
|
wayland-protocols
|
|
wayland-scanner
|
|
libinput
|
|
wlroots_0_16
|
|
libxkbcommon
|
|
pixman
|
|
];
|
|
}
|