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

23 lines
648 B

{ lib, stdenv, fetchurl, glib, pkg-config, libfm-extra }:
stdenv.mkDerivation rec {
pname = "menu-cache";
version = "1.1.0";
src = fetchurl {
url = "mirror://sourceforge/lxde/menu-cache-${version}.tar.xz";
sha256 = "1iry4zlpppww8qai2cw4zid4081hh7fz8nzsp5lqyffbkm2yn0pd";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ glib libfm-extra ];
meta = with lib; {
description = "Library to read freedesktop.org menu files";
homepage = "https://blog.lxde.org/tag/menu-cache/";
license = licenses.gpl2Plus;
maintainers = [ maintainers.ttuegel ];
platforms = platforms.linux ++ platforms.darwin;
};
}