2018-12-02 11:41:15 +00:00
|
|
|
{ stdenv, fetchurl, intltool, 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-08 04:14:08 +00:00
|
|
|
version = "3.31.3";
|
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-08 04:14:08 +00:00
|
|
|
sha256 = "11i5m0w15by1k8d94xla54nr4r8nnb63wk6iq0dzki4cv5d55qgw";
|
2016-09-18 19:35:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
makeFlags = "INTROSPECTION_GIRDIR=$(out)/share/gir-1.0/ INTROSPECTION_TYPELIBDIR=$(out)/lib/girepository-1.0";
|
|
|
|
|
2017-09-05 21:26:13 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2018-12-02 11:41:15 +00:00
|
|
|
buildInputs = [ intltool 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;
|
|
|
|
};
|
|
|
|
}
|