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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

55 lines
1022 B
Nix
Raw Normal View History

2022-07-12 11:56:56 +00:00
{ lib
, python3
, fetchurl
, pkg-config
, gettext
, mate
, gtk3
, glib
, wrapGAppsHook
, gobject-introspection
, mateUpdateScript
}:
2018-01-05 14:16:32 +00:00
2019-04-21 12:02:48 +00:00
python3.pkgs.buildPythonApplication rec {
pname = "mozo";
2022-10-31 15:51:34 +00:00
version = "1.26.2";
2018-01-05 14:16:32 +00:00
format = "other";
doCheck = false;
2018-01-05 14:16:32 +00:00
src = fetchurl {
2021-01-15 13:21:58 +00:00
url = "https://pub.mate-desktop.org/releases/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
2022-10-31 15:51:34 +00:00
sha256 = "RyxILg7y+xYp5h4X2qoaSH9kOSsCmEncmkCCr7OLye4=";
2018-01-05 14:16:32 +00:00
};
2022-07-12 11:56:56 +00:00
nativeBuildInputs = [
pkg-config
gettext
gobject-introspection
wrapGAppsHook
];
propagatedBuildInputs = [
mate.mate-menus
python3.pkgs.pygobject3
];
buildInputs = [
gtk3
glib
];
2018-01-05 14:16:32 +00:00
2020-02-14 21:52:51 +00:00
enableParallelBuilding = true;
passthru.updateScript = mateUpdateScript { inherit pname; };
2021-04-02 19:58:16 +00:00
meta = with lib; {
2018-01-05 14:16:32 +00:00
description = "MATE Desktop menu editor";
2020-02-12 17:51:23 +00:00
homepage = "https://github.com/mate-desktop/mozo";
2018-01-05 14:16:32 +00:00
license = with licenses; [ lgpl2Plus ];
platforms = platforms.unix;
maintainers = teams.mate.members;
2018-01-05 14:16:32 +00:00
};
}