Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, stdenv, fetchurl, glib, pkg-config, libfm-extra }:
2
3let name = "menu-cache-1.1.0";
4in
5stdenv.mkDerivation {
6 inherit name;
7 src = fetchurl {
8 url = "mirror://sourceforge/lxde/${name}.tar.xz";
9 sha256 = "1iry4zlpppww8qai2cw4zid4081hh7fz8nzsp5lqyffbkm2yn0pd";
10 };
11
12 nativeBuildInputs = [ pkg-config ];
13
14 buildInputs = [ glib libfm-extra ];
15
16 meta = with lib; {
17 description = "Library to read freedesktop.org menu files";
18 homepage = "https://blog.lxde.org/tag/menu-cache/";
19 license = licenses.gpl2Plus;
20 maintainers = [ maintainers.ttuegel ];
21 platforms = platforms.linux ++ platforms.darwin;
22 };
23}