mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
mozo: init at 1.18.0
This commit is contained in:
parent
fe7292d81a
commit
b1cc3eb48e
2 changed files with 31 additions and 0 deletions
|
@ -43,6 +43,7 @@ let
|
|||
mate-user-guide = callPackage ./mate-user-guide { };
|
||||
mate-user-share = callPackage ./mate-user-share { };
|
||||
mate-utils = callPackage ./mate-utils { };
|
||||
mozo = callPackage ./mozo { };
|
||||
pluma = callPackage ./pluma { };
|
||||
|
||||
basePackages = [
|
||||
|
@ -84,6 +85,7 @@ let
|
|||
mate-user-guide
|
||||
#mate-user-share
|
||||
mate-utils
|
||||
mozo
|
||||
pluma
|
||||
];
|
||||
|
||||
|
|
29
pkgs/desktops/mate/mozo/default.nix
Normal file
29
pkgs/desktops/mate/mozo/default.nix
Normal file
|
@ -0,0 +1,29 @@
|
|||
{ stdenv, fetchurl, pkgconfig, intltool, mate-menus, pythonPackages }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "mozo-${version}";
|
||||
version = "${major-ver}.${minor-ver}";
|
||||
major-ver = "1.18";
|
||||
minor-ver = "0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://pub.mate-desktop.org/releases/${major-ver}/${name}.tar.xz";
|
||||
sha256 = "04yn9bw64q5a5kvpmkb7rb3mlp11pmnvkbphficsgb0368fj895b";
|
||||
};
|
||||
|
||||
pythonPath = [ mate-menus pythonPackages.pygobject3 ];
|
||||
|
||||
nativeBuildInputs = [ pkgconfig intltool pythonPackages.wrapPython ];
|
||||
|
||||
buildInputs = [ pythonPackages.python ] ++ pythonPath;
|
||||
|
||||
preFixup = "wrapPythonPrograms";
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue