mate.mate-panel: 1.28.4 -> 1.28.5

https://github.com/mate-desktop/mate-panel/compare/v1.28.4...v1.28.5

Upstream is (still) experiencing problems releasing tarballs, so switch to
fetchFromGitHub for now.
This commit is contained in:
Bobby Rong 2025-08-09 11:11:46 +08:00
parent 5b09dc45f2
commit 9a38419734
No known key found for this signature in database

View File

@ -1,9 +1,12 @@
{ {
lib, lib,
stdenv, stdenv,
fetchurl, fetchFromGitHub,
autoconf-archive,
autoreconfHook,
pkg-config, pkg-config,
gettext, gettext,
gtk-doc,
itstool, itstool,
glib, glib,
gtk-layer-shell, gtk-layer-shell,
@ -14,32 +17,42 @@
libxml2, libxml2,
dconf, dconf,
dconf-editor, dconf-editor,
mate-common,
mate-desktop, mate-desktop,
mate-menus, mate-menus,
hicolor-icon-theme, hicolor-icon-theme,
wayland, wayland,
gobject-introspection, gobject-introspection,
wrapGAppsHook3, wrapGAppsHook3,
yelp-tools,
marco, marco,
mateUpdateScript, gitUpdater,
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "mate-panel"; pname = "mate-panel";
version = "1.28.4"; version = "1.28.5";
src = fetchurl { src = fetchFromGitHub {
url = "https://pub.mate-desktop.org/releases/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; owner = "mate-desktop";
hash = "sha256-AvCesDFMKsGXtvCJlQpXHNujm/0D1sOguP13JSqWiHQ="; repo = "mate-panel";
tag = "v${version}";
fetchSubmodules = true;
hash = "sha256-P1zrOH1xTbKXIoP13azAFDv2Q05dubR1AfmuLbgh250=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
autoconf-archive
autoreconfHook
gobject-introspection gobject-introspection
gettext gettext
gtk-doc
itstool itstool
libxml2 # xmllint libxml2 # xmllint
mate-common # mate-common.m4 macros
pkg-config pkg-config
wrapGAppsHook3 wrapGAppsHook3
yelp-tools
]; ];
buildInputs = [ buildInputs = [
@ -81,7 +94,10 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true; enableParallelBuilding = true;
passthru.updateScript = mateUpdateScript { inherit pname; }; passthru.updateScript = gitUpdater {
rev-prefix = "v";
odd-unstable = true;
};
meta = with lib; { meta = with lib; {
description = "MATE panel"; description = "MATE panel";