hyprland-protocols/nix/default.nix
2025-12-08 19:25:53 +02:00

21 lines
376 B
Nix

{
lib,
stdenv,
cmake,
version,
}:
stdenv.mkDerivation {
pname = "hyprland-protocols";
inherit version;
src = ../.;
nativeBuildInputs = [cmake];
meta = {
homepage = "https://github.com/hyprwm/hyprland-protocols";
description = "Wayland protocol extensions for Hyprland";
license = lib.licenses.bsd3;
platforms = lib.platforms.linux;
};
}