2018-12-02 11:41:15 +00:00
|
|
|
{ stdenv, fetchurl, intltool, pkgconfig, glib, gobject-introspection }:
|
2016-09-18 20:35:23 +01: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 20:35:23 +01: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 20:35:23 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
makeFlags = "INTROSPECTION_GIRDIR=$(out)/share/gir-1.0/ INTROSPECTION_TYPELIBDIR=$(out)/lib/girepository-1.0";
|
|
|
|
|
2017-09-05 22:26:13 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2018-12-02 11:41:15 +00:00
|
|
|
buildInputs = [ intltool glib gobject-introspection ];
|
2016-09-18 20:35:23 +01:00
|
|
|
|
|
|
|
meta = {
|
2018-05-01 04:03:23 +01: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 20:35:23 +01:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
};
|
|
|
|
}
|