mozo: init at 1.18.0

authored by José Romildo Malaquias and committed by Tuomas Tynkkynen b1cc3eb4 fe7292d8

+31
+2
pkgs/desktops/mate/default.nix
··· 43 43 mate-user-guide = callPackage ./mate-user-guide { }; 44 44 mate-user-share = callPackage ./mate-user-share { }; 45 45 mate-utils = callPackage ./mate-utils { }; 46 + mozo = callPackage ./mozo { }; 46 47 pluma = callPackage ./pluma { }; 47 48 48 49 basePackages = [ ··· 84 85 mate-user-guide 85 86 #mate-user-share 86 87 mate-utils 88 + mozo 87 89 pluma 88 90 ]; 89 91
+29
pkgs/desktops/mate/mozo/default.nix
··· 1 + { stdenv, fetchurl, pkgconfig, intltool, mate-menus, pythonPackages }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "mozo-${version}"; 5 + version = "${major-ver}.${minor-ver}"; 6 + major-ver = "1.18"; 7 + minor-ver = "0"; 8 + 9 + src = fetchurl { 10 + url = "http://pub.mate-desktop.org/releases/${major-ver}/${name}.tar.xz"; 11 + sha256 = "04yn9bw64q5a5kvpmkb7rb3mlp11pmnvkbphficsgb0368fj895b"; 12 + }; 13 + 14 + pythonPath = [ mate-menus pythonPackages.pygobject3 ]; 15 + 16 + nativeBuildInputs = [ pkgconfig intltool pythonPackages.wrapPython ]; 17 + 18 + buildInputs = [ pythonPackages.python ] ++ pythonPath; 19 + 20 + preFixup = "wrapPythonPrograms"; 21 + 22 + meta = with stdenv.lib; { 23 + description = "MATE Desktop menu editor"; 24 + homepage = https://github.com/mate-desktop/mozo; 25 + license = with licenses; [ lgpl2Plus ]; 26 + platforms = platforms.unix; 27 + maintainers = [ maintainers.romildo ]; 28 + }; 29 + }