Unverified Commit b4110024 authored by Bobby Rong's avatar Bobby Rong Committed by GitHub
Browse files

mate.mate-panel: 1.28.4 -> 1.28.5 (#432165)

parents 1c82e3af 9a384197
Loading
Loading
Loading
Loading
+23 −7
Original line number Diff line number Diff line
{
  lib,
  stdenv,
  fetchurl,
  fetchFromGitHub,
  autoconf-archive,
  autoreconfHook,
  pkg-config,
  gettext,
  gtk-doc,
  itstool,
  glib,
  gtk-layer-shell,
@@ -14,32 +17,42 @@
  libxml2,
  dconf,
  dconf-editor,
  mate-common,
  mate-desktop,
  mate-menus,
  hicolor-icon-theme,
  wayland,
  gobject-introspection,
  wrapGAppsHook3,
  yelp-tools,
  marco,
  mateUpdateScript,
  gitUpdater,
}:

stdenv.mkDerivation rec {
  pname = "mate-panel";
  version = "1.28.4";
  version = "1.28.5";

  src = fetchurl {
    url = "https://pub.mate-desktop.org/releases/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
    hash = "sha256-AvCesDFMKsGXtvCJlQpXHNujm/0D1sOguP13JSqWiHQ=";
  src = fetchFromGitHub {
    owner = "mate-desktop";
    repo = "mate-panel";
    tag = "v${version}";
    fetchSubmodules = true;
    hash = "sha256-P1zrOH1xTbKXIoP13azAFDv2Q05dubR1AfmuLbgh250=";
  };

  nativeBuildInputs = [
    autoconf-archive
    autoreconfHook
    gobject-introspection
    gettext
    gtk-doc
    itstool
    libxml2 # xmllint
    mate-common # mate-common.m4 macros
    pkg-config
    wrapGAppsHook3
    yelp-tools
  ];

  buildInputs = [
@@ -81,7 +94,10 @@ stdenv.mkDerivation rec {

  enableParallelBuilding = true;

  passthru.updateScript = mateUpdateScript { inherit pname; };
  passthru.updateScript = gitUpdater {
    rev-prefix = "v";
    odd-unstable = true;
  };

  meta = with lib; {
    description = "MATE panel";