biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / desktops / mate / mozo / default.nix
blobc402cf039300fa6c23e11c4984e0247e9180202c
1 { lib
2 , python3
3 , fetchurl
4 , pkg-config
5 , gettext
6 , mate-menus
7 , gtk3
8 , glib
9 , wrapGAppsHook3
10 , gobject-introspection
11 , mateUpdateScript
14 python3.pkgs.buildPythonApplication rec {
15   pname = "mozo";
16   version = "1.28.0";
18   format = "other";
19   doCheck = false;
21   src = fetchurl {
22     url = "https://pub.mate-desktop.org/releases/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
23     sha256 = "/piYT/1qqMNtBZS879ugPeObQtQeAHJRaAOE8870SSQ=";
24   };
26   nativeBuildInputs = [
27     pkg-config
28     gettext
29     gobject-introspection
30     wrapGAppsHook3
31   ];
33   propagatedBuildInputs = [
34     mate-menus
35     python3.pkgs.pygobject3
36   ];
38   buildInputs = [
39     gtk3
40     glib
41   ];
43   enableParallelBuilding = true;
45   passthru.updateScript = mateUpdateScript { inherit pname; };
47   meta = with lib; {
48     description = "MATE Desktop menu editor";
49     mainProgram = "mozo";
50     homepage = "https://github.com/mate-desktop/mozo";
51     license = with licenses; [ lgpl2Plus ];
52     platforms = platforms.unix;
53     maintainers = teams.mate.members;
54   };