mirror of
https://github.com/hyprwm/hyprland-protocols.git
synced 2025-12-20 05:00:02 +01:00
21 lines
376 B
Nix
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;
|
|
};
|
|
}
|