1{ stdenv, fetchurl, glib, pkgconfig, libfm-extra }:
2
3let name = "menu-cache-1.1.0";
4in
5stdenv.mkDerivation {
6 inherit name;
7 src = fetchurl {
8 url = "mirror://sourceforge/lxde/${name}.tar.xz";
9 sha256 = "1iry4zlpppww8qai2cw4zid4081hh7fz8nzsp5lqyffbkm2yn0pd";
10 };
11
12 nativeBuildInputs = [ pkgconfig ];
13
14 buildInputs = [ glib libfm-extra ];
15
16 meta = with stdenv.lib; {
17 homepage = http://blog.lxde.org/?tag=menu-cache;
18 license = licenses.gpl2Plus;
19 description = "Library to read freedesktop.org menu files";
20 maintainers = [ maintainers.ttuegel ];
21 platforms = platforms.linux ++ platforms.darwin;
22 };
23}