base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12
[NixPkgs.git] / pkgs / by-name / hy / hyprland-protocols / package.nix
blob99c07db13cc9d52074f6014fb0a02070bff75326
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , meson
5 , ninja
6 }:
7 stdenv.mkDerivation (finalAttrs: {
8   pname = "hyprland-protocols";
9   version = "0.4.0";
11   src = fetchFromGitHub {
12     owner = "hyprwm";
13     repo = "hyprland-protocols";
14     rev = "v${finalAttrs.version}";
15     hash = "sha256-CnpsECzP1VvBx8aM/ptv3S7rykYqTeh63LgEMv7hBnU=";
16   };
18   nativeBuildInputs = [
19     meson
20     ninja
21   ];
23   meta = {
24     homepage = "https://github.com/hyprwm/hyprland-protocols";
25     description = "Wayland protocol extensions for Hyprland";
26     license = lib.licenses.bsd3;
27     maintainers = with lib.maintainers; [ fufexan ];
28     platforms = lib.platforms.linux;
29   };