2019-01-28 17:07:09 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, glib, gobject-introspection }:
|
2016-09-18 19:35:23 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-12-25 23:29:06 +00:00
|
|
|
pname = "gnome-menus";
|
2019-01-28 14:22:31 +00:00
|
|
|
version = "3.31.4";
|
2016-09-18 19:35:23 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-12-25 23:29:06 +00:00
|
|
|
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2019-01-28 14:22:31 +00:00
|
|
|
sha256 = "1iihxcibjg22jxsw3s1cxzcq0rhn1rdmx4xg7qjqij981afs8dr7";
|
2016-09-18 19:35:23 +00:00
|
|
|
};
|
|
|
|
|
2019-01-28 17:07:09 +00:00
|
|
|
makeFlags = [
|
|
|
|
"INTROSPECTION_GIRDIR=${placeholder ''out''}/share/gir-1.0/"
|
|
|
|
"INTROSPECTION_TYPELIBDIR=${placeholder ''out''}/lib/girepository-1.0"
|
|
|
|
];
|
2016-09-18 19:35:23 +00:00
|
|
|
|
2017-09-05 21:26:13 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2019-01-28 17:07:09 +00:00
|
|
|
buildInputs = [ glib gobject-introspection ];
|
2016-09-18 19:35:23 +00:00
|
|
|
|
|
|
|
meta = {
|
2018-05-01 03:03:23 +00:00
|
|
|
homepage = https://www.gnome.org;
|
2018-12-25 23:29:06 +00:00
|
|
|
description = "Library that implements freedesktops's Desktop Menu Specification in GNOME";
|
2016-09-18 19:35:23 +00:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
};
|
|
|
|
}
|