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