hyprwayland-scanner: 0.3.4 -> 0.3.10

Needed for Hyprland v41.0 release.
This commit is contained in:
John Titor 2024-06-12 02:04:39 +05:30
parent 8d7a6772b4
commit 83cc03fc76
No known key found for this signature in database
GPG Key ID: 29B0514F4E3C1CC0

View File

@ -4,17 +4,18 @@
, cmake
, pkg-config
, pugixml
, nix-update-script
,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "hyprwayland-scanner";
version = "0.3.4";
version = "0.3.10";
src = fetchFromGitHub {
owner = "hyprwm";
repo = "hyprwayland-scanner";
rev = "v${finalAttrs.version}";
hash = "sha256-D0pg+ZRwrt4lavZ97Ca8clsgbPA3duLj8iEM7riaIFY=";
hash = "sha256-YxmfxHfWed1fosaa7fC1u7XoKp1anEZU+7Lh/ojRKoM=";
};
nativeBuildInputs = [
@ -28,12 +29,15 @@ stdenv.mkDerivation (finalAttrs: {
doCheck = true;
meta = with lib; {
passthru.updateScript = nix-update-script { };
meta = {
homepage = "https://github.com/hyprwm/hyprwayland-scanner";
description = "Hyprland version of wayland-scanner in and for C++";
license = licenses.bsd3;
maintainers = with maintainers; [ fufexan ];
changelog = "https://github.com/hyprwm/hyprwayland-scanner/releases/tag/${finalAttrs.version}";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ fufexan ];
mainProgram = "hyprwayland-scanner";
platforms = platforms.linux;
platforms = lib.platforms.linux;
};
})