2021-04-02 21:58:16 +02:00
|
|
|
{ lib, python3, fetchurl, pkg-config, gettext, mate, gtk3, glib, wrapGAppsHook, gobject-introspection, mateUpdateScript }:
|
2018-01-05 15:16:32 +01:00
|
|
|
|
2019-04-21 14:02:48 +02:00
|
|
|
python3.pkgs.buildPythonApplication rec {
|
2019-01-16 01:26:33 +01:00
|
|
|
pname = "mozo";
|
2021-08-06 21:08:20 +02:00
|
|
|
version = "1.26.0";
|
2018-01-05 15:16:32 +01:00
|
|
|
|
2019-01-16 01:26:33 +01:00
|
|
|
format = "other";
|
|
|
|
doCheck = false;
|
|
|
|
|
2018-01-05 15:16:32 +01:00
|
|
|
src = fetchurl {
|
2021-01-15 14:21:58 +01:00
|
|
|
url = "https://pub.mate-desktop.org/releases/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2021-08-06 21:08:20 +02:00
|
|
|
sha256 = "1hnxqdk69g7j809k6picgq8y626hnyznlzxd0pi743gshpwwnhj6";
|
2018-01-05 15:16:32 +01:00
|
|
|
};
|
|
|
|
|
2021-01-17 03:21:50 +01:00
|
|
|
nativeBuildInputs = [ pkg-config gettext gobject-introspection wrapGAppsHook ];
|
2018-01-05 15:16:32 +01:00
|
|
|
|
2019-04-21 14:02:48 +02:00
|
|
|
propagatedBuildInputs = [ mate.mate-menus python3.pkgs.pygobject3 ];
|
2018-01-05 15:16:32 +01:00
|
|
|
|
2019-01-16 01:26:33 +01:00
|
|
|
buildInputs = [ gtk3 glib ];
|
2018-01-05 15:16:32 +01:00
|
|
|
|
2020-02-14 22:52:51 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2021-04-02 21:58:16 +02:00
|
|
|
passthru.updateScript = mateUpdateScript { inherit pname version; };
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2018-01-05 15:16:32 +01:00
|
|
|
description = "MATE Desktop menu editor";
|
2020-02-12 18:51:23 +01:00
|
|
|
homepage = "https://github.com/mate-desktop/mozo";
|
2018-01-05 15:16:32 +01:00
|
|
|
license = with licenses; [ lgpl2Plus ];
|
|
|
|
platforms = platforms.unix;
|
2021-09-21 21:45:29 +02:00
|
|
|
maintainers = teams.mate.members;
|
2018-01-05 15:16:32 +01:00
|
|
|
};
|
|
|
|
}
|