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