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

22 lines
585 B
Nix
Raw Normal View History

{ stdenv, fetchurl, glib, pkgconfig, libfm-extra }:
2014-03-01 22:37:39 +04:00
let name = "menu-cache-0.7.0";
in
2014-03-01 22:37:39 +04:00
stdenv.mkDerivation {
inherit name;
2014-03-01 22:37:39 +04:00
src = fetchurl {
url = "mirror://sourceforge/lxde/${name}.tar.xz";
sha256 = "0wwkk4jrcl2sp11bspabplchh4ipi1zyn39j3skyzgbm8k40gkhk";
2014-03-01 22:37:39 +04:00
};
buildInputs = [ glib pkgconfig libfm-extra ];
2014-03-01 22:37:39 +04:00
meta = with stdenv.lib; {
2014-03-01 22:37:39 +04:00
homepage = "http://blog.lxde.org/?tag=menu-cache";
license = licenses.gpl2Plus;
2014-03-01 22:37:39 +04:00
description = "Library to read freedesktop.org menu files";
maintainers = [ maintainers.ttuegel ];
platforms = platforms.linux;
2014-03-01 22:37:39 +04:00
};
}