2014-09-20 11:20:19 -07:00
|
|
|
{ stdenv, fetchurl, glib, pkgconfig, libfm-extra }:
|
2014-03-01 10:37:39 -08:00
|
|
|
|
2016-11-17 11:05:47 -08:00
|
|
|
let name = "menu-cache-1.0.2";
|
2014-09-20 11:20:19 -07:00
|
|
|
in
|
2014-03-01 10:37:39 -08:00
|
|
|
stdenv.mkDerivation {
|
2014-09-20 11:20:19 -07:00
|
|
|
inherit name;
|
2014-03-01 10:37:39 -08:00
|
|
|
src = fetchurl {
|
2014-09-20 11:20:19 -07:00
|
|
|
url = "mirror://sourceforge/lxde/${name}.tar.xz";
|
2016-11-17 11:05:47 -08:00
|
|
|
sha256 = "1m8j40npykfcfqs43kc0fmksal2jfmfi8lnb3mq3xy1lvvrfv0vg";
|
2014-03-01 10:37:39 -08:00
|
|
|
};
|
|
|
|
|
2016-04-29 05:43:01 -07:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
|
|
|
|
buildInputs = [ glib libfm-extra ];
|
2014-03-01 10:37:39 -08:00
|
|
|
|
2014-03-07 09:20:18 -08:00
|
|
|
meta = with stdenv.lib; {
|
2014-03-01 10:37:39 -08:00
|
|
|
homepage = "http://blog.lxde.org/?tag=menu-cache";
|
2014-03-07 09:20:18 -08:00
|
|
|
license = licenses.gpl2Plus;
|
2014-03-01 10:37:39 -08:00
|
|
|
description = "Library to read freedesktop.org menu files";
|
2014-03-07 09:20:18 -08:00
|
|
|
maintainers = [ maintainers.ttuegel ];
|
2017-04-20 14:45:41 -07:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2014-03-01 10:37:39 -08:00
|
|
|
};
|
|
|
|
}
|