about summary refs log tree commit diff
path: root/pkgs/development/libraries/menu-cache/default.nix
blob: b6d187e7a0ed38a728eacf77eeaa601c67b5917b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv, fetchurl, glib, pkgconfig, libfm-extra }:

let name = "menu-cache-1.0.1";
in
stdenv.mkDerivation {
  inherit name;
  src = fetchurl {
    url = "mirror://sourceforge/lxde/${name}.tar.xz";
    sha256 = "0ngxvwfj9drabqi3lyzgpi0d0za6431sy2ijb010filrj54jdiqa";
  };

  nativeBuildInputs = [ pkgconfig ];

  buildInputs = [ glib libfm-extra ];

  meta = with stdenv.lib; {
    homepage = "http://blog.lxde.org/?tag=menu-cache";
    license = licenses.gpl2Plus;
    description = "Library to read freedesktop.org menu files";
    maintainers = [ maintainers.ttuegel ];
    platforms = platforms.linux;
  };
}