mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 06:47:09 +03:00
6983256418
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/mozo/versions. These checks were done: - built on NixOS - Warning: no invocation of /nix/store/i8ksqdhh5n0sc85vywha6l85irpdhiai-mozo-1.20.1/bin/.mozo-wrapped had a zero exit code or showed the expected version - Warning: no invocation of /nix/store/i8ksqdhh5n0sc85vywha6l85irpdhiai-mozo-1.20.1/bin/mozo had a zero exit code or showed the expected version - 0 of 2 passed binary check by having a zero exit code. - 0 of 2 passed binary check by having the new version present in output. - found 1.20.1 with grep in /nix/store/i8ksqdhh5n0sc85vywha6l85irpdhiai-mozo-1.20.1 - directory tree listing: https://gist.github.com/8bf22748318bb6d4602593cba6558491 - du listing: https://gist.github.com/00c4d9e916dce5eab7e6917ad856008d
28 lines
814 B
Nix
28 lines
814 B
Nix
{ stdenv, fetchurl, pkgconfig, intltool, mate, pythonPackages }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "mozo-${version}";
|
|
version = "1.20.1";
|
|
|
|
src = fetchurl {
|
|
url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz";
|
|
sha256 = "16rkwbq385i2acll0kcsnp4ghdyljylhp06bjdsvbwv6bjspyyrp";
|
|
};
|
|
|
|
pythonPath = [ mate.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 ];
|
|
};
|
|
}
|