2018-12-02 03:41:15 -08:00
|
|
|
{ stdenv, fetchurl, intltool, pkgconfig, glib, gobject-introspection }:
|
2016-09-18 12:35:23 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-12-25 15:29:06 -08:00
|
|
|
pname = "gnome-menus";
|
2019-01-07 20:14:08 -08:00
|
|
|
version = "3.31.3";
|
2016-09-18 12:35:23 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-12-25 15:29:06 -08:00
|
|
|
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2019-01-07 20:14:08 -08:00
|
|
|
sha256 = "11i5m0w15by1k8d94xla54nr4r8nnb63wk6iq0dzki4cv5d55qgw";
|
2016-09-18 12:35:23 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
makeFlags = "INTROSPECTION_GIRDIR=$(out)/share/gir-1.0/ INTROSPECTION_TYPELIBDIR=$(out)/lib/girepository-1.0";
|
|
|
|
|
2017-09-05 14:26:13 -07:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2018-12-02 03:41:15 -08:00
|
|
|
buildInputs = [ intltool glib gobject-introspection ];
|
2016-09-18 12:35:23 -07:00
|
|
|
|
|
|
|
meta = {
|
2018-04-30 20:03:23 -07:00
|
|
|
homepage = https://www.gnome.org;
|
2018-12-25 15:29:06 -08:00
|
|
|
description = "Library that implements freedesktops's Desktop Menu Specification in GNOME";
|
2016-09-18 12:35:23 -07:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
};
|
|
|
|
}
|