swayidle-rs/shell.nix

8 lines
264 B
Nix
Raw Permalink Normal View History

2024-08-14 06:12:40 +07:00
{ pkgs ? import <nixpkgs> { } }:
pkgs.mkShell {
name = "rust-wl-shell";
nativeBuildInputs = [ pkgs.pkg-config ];
buildInputs = [ pkgs.wayland-protocols pkgs.wayland pkgs.systemd ];
LD_LIBRARY_PATH = "${pkgs.wayland-scanner.out}/lib:${pkgs.systemd}/lib";
}