hyprland-protocols/nix/default.nix

22 lines
376 B
Nix
Raw Permalink Normal View History

2022-12-24 00:59:07 +02:00
{
lib,
stdenv,
2025-12-08 19:25:53 +02:00
cmake,
2022-12-24 00:59:07 +02:00
version,
}:
stdenv.mkDerivation {
pname = "hyprland-protocols";
inherit version;
src = ../.;
2025-12-08 19:25:53 +02:00
nativeBuildInputs = [cmake];
2022-12-24 00:59:07 +02:00
meta = {
homepage = "https://github.com/hyprwm/hyprland-protocols";
description = "Wayland protocol extensions for Hyprland";
license = lib.licenses.bsd3;
platforms = lib.platforms.linux;
};
}