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

29 lines
868 B
Nix
Raw Normal View History

{ stdenv, python, fetchurl, pkgconfig, intltool, mate, gtk3, glib, wrapGAppsHook, gobject-introspection }:
2018-01-05 15:16:32 +01:00
python.pkgs.buildPythonApplication rec {
pname = "mozo";
2019-01-14 14:47:54 +01:00
version = "1.20.2";
2018-01-05 15:16:32 +01:00
format = "other";
doCheck = false;
2018-01-05 15:16:32 +01:00
src = fetchurl {
url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${pname}-${version}.tar.xz";
2019-01-14 14:47:54 +01:00
sha256 = "1q4hqhigimxav2a8xxyd53lq8q80szsphcv37y2jhm6g6wvdmvhd";
2018-01-05 15:16:32 +01:00
};
nativeBuildInputs = [ pkgconfig intltool gobject-introspection wrapGAppsHook ];
2018-01-05 15:16:32 +01:00
propagatedBuildInputs = [ mate.mate-menus python.pkgs.pygobject3 ];
2018-01-05 15:16:32 +01:00
buildInputs = [ gtk3 glib ];
2018-01-05 15:16:32 +01:00
meta = with stdenv.lib; {
description = "MATE Desktop menu editor";
homepage = https://github.com/mate-desktop/mozo;
license = with licenses; [ lgpl2Plus ];
platforms = platforms.unix;
maintainers = [ maintainers.romildo ];
};
}