2020-02-14 14:09:49 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, gettext, glib, gobject-introspection, python3 }:
|
2017-08-31 03:59:38 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "mate-menus";
|
2020-02-12 17:51:21 +00:00
|
|
|
version = "1.24.0";
|
2017-08-31 03:59:38 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-12-13 22:37:37 +00:00
|
|
|
url = "https://pub.mate-desktop.org/releases/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2020-02-12 17:51:21 +00:00
|
|
|
sha256 = "1vv4j38h7mrbfrsj99k25z6y7b5dg30fzd2qnhk7pl8ca8s1jhrd";
|
2017-08-31 03:59:38 +01:00
|
|
|
};
|
|
|
|
|
2020-02-14 14:09:49 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig gettext gobject-introspection ];
|
2017-08-31 03:59:38 +01:00
|
|
|
|
2019-04-21 13:02:46 +01:00
|
|
|
buildInputs = [ glib python3 ];
|
2017-08-31 03:59:38 +01:00
|
|
|
|
|
|
|
makeFlags = [
|
|
|
|
"INTROSPECTION_GIRDIR=$(out)/share/gir-1.0/"
|
|
|
|
"INTROSPECTION_TYPELIBDIR=$(out)/lib/girepository-1.0"
|
|
|
|
];
|
|
|
|
|
2020-02-14 21:52:51 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2017-08-31 03:59:38 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Menu system for MATE";
|
2020-02-12 17:51:21 +00:00
|
|
|
homepage = "https://github.com/mate-desktop/mate-menus";
|
2017-08-31 03:59:38 +01:00
|
|
|
license = with licenses; [ gpl2 lgpl2 ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = [ maintainers.romildo ];
|
|
|
|
};
|
|
|
|
}
|