My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nomicon/pkgs/development/libraries/menu-cache/default.nix

24 lines
631 B

{ stdenv, fetchurl, glib, pkgconfig, libfm-extra }:
10 years ago
let name = "menu-cache-1.0.2";
in
10 years ago
stdenv.mkDerivation {
inherit name;
10 years ago
src = fetchurl {
url = "mirror://sourceforge/lxde/${name}.tar.xz";
sha256 = "1m8j40npykfcfqs43kc0fmksal2jfmfi8lnb3mq3xy1lvvrfv0vg";
10 years ago
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ glib libfm-extra ];
10 years ago
meta = with stdenv.lib; {
homepage = http://blog.lxde.org/?tag=menu-cache;
license = licenses.gpl2Plus;
10 years ago
description = "Library to read freedesktop.org menu files";
maintainers = [ maintainers.ttuegel ];
platforms = platforms.linux ++ platforms.darwin;
10 years ago
};
}