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

mate.mate-menus: 1.28.0 -> 1.28.1 (#472386)

parents 8bcc1af1 a18e3df5
Loading
Loading
Loading
Loading
+13 −6
Original line number Diff line number Diff line
{
  lib,
  stdenv,
  fetchurl,
  fetchFromGitHub,
  autoconf-archive,
  autoreconfHook,
  pkg-config,
  gettext,
  glib,
  gobject-introspection,
  mate-common,
  python3,
  mateUpdateScript,
}:

stdenv.mkDerivation rec {
  pname = "mate-menus";
  version = "1.28.0";
  version = "1.28.1";

  src = fetchurl {
    url = "https://pub.mate-desktop.org/releases/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
    sha256 = "z0DHXH1vCq0dSWmCj8YgJcYiK8aoTwu51urX5FlwUI0=";
  src = fetchFromGitHub {
    owner = "mate-desktop";
    repo = "mate-menus";
    tag = "v${version}";
    hash = "sha256-GAc9DPsXdswmyNKlbY6cyHBWO2OSKCBygtzttNHN/p4=";
  };

  nativeBuildInputs = [
    autoconf-archive
    autoreconfHook
    pkg-config
    gettext
    gobject-introspection
    mate-common # mate-common.m4 macros
  ];

  buildInputs = [