mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 18:03:04 +00:00
55 lines
1022 B
Nix
55 lines
1022 B
Nix
{ lib
|
|
, python3
|
|
, fetchurl
|
|
, pkg-config
|
|
, gettext
|
|
, mate
|
|
, gtk3
|
|
, glib
|
|
, wrapGAppsHook
|
|
, gobject-introspection
|
|
, mateUpdateScript
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "mozo";
|
|
version = "1.26.2";
|
|
|
|
format = "other";
|
|
doCheck = false;
|
|
|
|
src = fetchurl {
|
|
url = "https://pub.mate-desktop.org/releases/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
|
sha256 = "RyxILg7y+xYp5h4X2qoaSH9kOSsCmEncmkCCr7OLye4=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
gettext
|
|
gobject-introspection
|
|
wrapGAppsHook
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
mate.mate-menus
|
|
python3.pkgs.pygobject3
|
|
];
|
|
|
|
buildInputs = [
|
|
gtk3
|
|
glib
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
passthru.updateScript = mateUpdateScript { inherit pname; };
|
|
|
|
meta = with lib; {
|
|
description = "MATE Desktop menu editor";
|
|
homepage = "https://github.com/mate-desktop/mozo";
|
|
license = with licenses; [ lgpl2Plus ];
|
|
platforms = platforms.unix;
|
|
maintainers = teams.mate.members;
|
|
};
|
|
}
|