2021-01-21 17:00:13 +00:00
|
|
|
{ lib, stdenv, fetchurl, glib, pkg-config, libfm-extra }:
|
2014-03-01 18:37:39 +00:00
|
|
|
|
2018-02-27 14:04:29 +00:00
|
|
|
let name = "menu-cache-1.1.0";
|
2014-09-20 18:20:19 +00:00
|
|
|
in
|
2014-03-01 18:37:39 +00:00
|
|
|
stdenv.mkDerivation {
|
2014-09-20 18:20:19 +00:00
|
|
|
inherit name;
|
2014-03-01 18:37:39 +00:00
|
|
|
src = fetchurl {
|
2014-09-20 18:20:19 +00:00
|
|
|
url = "mirror://sourceforge/lxde/${name}.tar.xz";
|
2018-02-27 14:04:29 +00:00
|
|
|
sha256 = "1iry4zlpppww8qai2cw4zid4081hh7fz8nzsp5lqyffbkm2yn0pd";
|
2014-03-01 18:37:39 +00:00
|
|
|
};
|
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2016-04-29 12:43:01 +00:00
|
|
|
|
|
|
|
buildInputs = [ glib libfm-extra ];
|
2014-03-01 18:37:39 +00:00
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2014-03-01 18:37:39 +00:00
|
|
|
description = "Library to read freedesktop.org menu files";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://blog.lxde.org/tag/menu-cache/";
|
2018-12-25 12:09:50 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2014-03-07 17:20:18 +00:00
|
|
|
maintainers = [ maintainers.ttuegel ];
|
2017-04-20 21:45:41 +00:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2014-03-01 18:37:39 +00:00
|
|
|
};
|
|
|
|
}
|