5 , gobject-introspection
13 python3Packages.buildPythonApplication rec {
14 pname = "xdgmenumaker";
17 src = fetchFromGitHub {
21 sha256 = "K+IecWWRjnY/5TBJydTuEPqNRSg1OIE1t0u6HkLS9uI=";
42 pythonPath = with python3Packages; [
48 "PREFIX=${placeholder "out"}"
52 makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
55 passthru.updateScript = gitUpdater { };
58 description = "Command line tool that generates XDG menus for several window managers";
59 homepage = "https://github.com/gapan/xdgmenumaker";
60 license = licenses.gpl3Plus;
61 # NOTE: exclude darwin from platforms because Travis reports hash mismatch
62 platforms = with platforms; filter (x: !(elem x darwin)) unix;
63 maintainers = [ maintainers.romildo ];