nixpkgs/pkgs/applications/window-managers/hyprwm/hyprland-protocols/default.nix
Mihai Fufezan 530dd26f48
hyprwm: update packages
hyprland-protocols: unstable-2023-01-13 -> 0.2
hyprland: 0.24.0 -> 0.25.0
hyprpaper: unstable-2023-04-05 -> 0.1.0
hyprpicker: unstable-2023-03-31 -> 0.1.0
xdg-desktop-portal-hyprland: unstable-2023-04-06 -> 0.3.1
2023-05-04 00:37:50 +03:00

31 lines
641 B
Nix

{ lib
, stdenv
, fetchFromGitHub
, meson
, ninja
}:
stdenv.mkDerivation (finalAttrs: {
pname = "hyprland-protocols";
version = "0.2";
src = fetchFromGitHub {
owner = "hyprwm";
repo = finalAttrs.pname;
rev = "v${finalAttrs.version}";
hash = "sha256-QPzwwlGKX95tl6ZEshboZbEwwAXww6lNLdVYd6T9Mrc=";
};
nativeBuildInputs = [
meson
ninja
];
meta = {
homepage = "https://github.com/hyprwm/hyprland-protocols";
description = "Wayland protocol extensions for Hyprland";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ fufexan ];
platforms = lib.platforms.linux;
};
})