Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
42 lines
771 B
Nix
42 lines
771 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
glib,
|
|
pkg-config,
|
|
libfm-extra,
|
|
autoreconfHook,
|
|
gtk-doc,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "menu-cache";
|
|
version = "1.1.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "lxde";
|
|
repo = "menu-cache";
|
|
tag = finalAttrs.version;
|
|
hash = "sha256-5Vp2btrflimy+Hq+3MLpic/quZMJ3uwsMq12G7s4DGI=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
pkg-config
|
|
gtk-doc
|
|
];
|
|
|
|
buildInputs = [
|
|
glib
|
|
libfm-extra
|
|
];
|
|
|
|
meta = {
|
|
description = "Library to read freedesktop.org menu files";
|
|
homepage = "https://blog.lxde.org/tag/menu-cache/";
|
|
license = lib.licenses.gpl2Plus;
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
platforms = lib.platforms.linux ++ lib.platforms.darwin;
|
|
};
|
|
})
|