nixpkgs/pkgs/development/libraries/menu-cache/default.nix

24 lines
634 B
Nix
Raw Normal View History

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