2014-03-01 19:37:39 +01:00
|
|
|
{ stdenv, fetchurl, glib, pkgconfig }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "menu-cache-0.5.1";
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/lxde/menu-cache-0.5.1.tar.gz";
|
|
|
|
sha256 = "08m1msgbl6j7j72cwcg18klb99jif8h1phkcnbplxkdf3w15irh8";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ glib pkgconfig ];
|
|
|
|
|
2014-03-07 18:20:18 +01:00
|
|
|
meta = with stdenv.lib; {
|
2014-03-01 19:37:39 +01:00
|
|
|
homepage = "http://blog.lxde.org/?tag=menu-cache";
|
2014-03-07 18:20:18 +01:00
|
|
|
license = licenses.gpl2Plus;
|
2014-03-01 19:37:39 +01:00
|
|
|
description = "Library to read freedesktop.org menu files";
|
2014-03-07 18:20:18 +01:00
|
|
|
maintainers = [ maintainers.ttuegel ];
|
|
|
|
platforms = platforms.linux;
|
2014-03-01 19:37:39 +01:00
|
|
|
};
|
|
|
|
}
|