mirror of
https://github.com/hyprwm/hyprland-protocols.git
synced 2024-11-08 14:55:59 +01:00
22 lines
391 B
Nix
22 lines
391 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
meson,
|
|
ninja,
|
|
version,
|
|
}:
|
|
stdenv.mkDerivation {
|
|
pname = "hyprland-protocols";
|
|
inherit version;
|
|
|
|
src = ../.;
|
|
|
|
nativeBuildInputs = [meson ninja];
|
|
|
|
meta = {
|
|
homepage = "https://github.com/hyprwm/hyprland-protocols";
|
|
description = "Wayland protocol extensions for Hyprland";
|
|
license = lib.licenses.bsd3;
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|