nixpkgs/pkgs/desktops/mate/mozo/default.nix

33 lines
983 B
Nix
Raw Normal View History

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 {
pname = "mozo";
2021-11-18 22:48:17 +01:00
version = "1.26.1";
2018-01-05 15:16:32 +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-11-18 22:48:17 +01:00
sha256 = "DyRCmjsDe9BojsTDkdnYeB5Csj7zRfXlCvHnLF7y+jk=";
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
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; };
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;
maintainers = teams.mate.members;
2018-01-05 15:16:32 +01:00
};
}