2019-12-05 03:47:57 +00:00
|
|
|
{ stdenv, fetchFromGitHub, txt2tags, python3Packages, glib, gobject-introspection, wrapGAppsHook }:
|
2016-04-16 04:35:16 +01:00
|
|
|
|
2019-12-05 03:47:57 +00:00
|
|
|
python3Packages.buildPythonApplication rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "xdgmenumaker";
|
2018-10-12 22:04:26 +01:00
|
|
|
version = "1.5";
|
2016-04-16 04:35:16 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "gapan";
|
2019-12-05 03:47:57 +00:00
|
|
|
repo = pname;
|
2016-11-01 19:23:20 +00:00
|
|
|
rev = version;
|
2018-10-12 22:04:26 +01:00
|
|
|
sha256 = "1vrsp5c1ah7p4dpwd6aqvinpwzd8crdimvyyr3lbm3c6cwpyjmif";
|
2016-04-16 04:35:16 +01:00
|
|
|
};
|
|
|
|
|
2019-12-05 03:47:57 +00:00
|
|
|
format = "other";
|
|
|
|
|
|
|
|
strictDeps = false;
|
|
|
|
|
2016-04-16 04:35:16 +01:00
|
|
|
nativeBuildInputs = [
|
2019-12-05 03:47:57 +00:00
|
|
|
gobject-introspection
|
2016-04-16 04:35:16 +01:00
|
|
|
txt2tags
|
2019-12-05 03:47:57 +00:00
|
|
|
wrapGAppsHook
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
glib
|
2016-04-16 04:35:16 +01:00
|
|
|
];
|
|
|
|
|
2019-12-05 03:47:57 +00:00
|
|
|
pythonPath = with python3Packages; [
|
|
|
|
pyxdg
|
|
|
|
pygobject3
|
2016-04-16 04:35:16 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
make install PREFIX=$out DESTDIR=
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Command line tool that generates XDG menus for several window managers";
|
|
|
|
homepage = https://github.com/gapan/xdgmenumaker;
|
|
|
|
license = licenses.gpl2Plus;
|
2016-12-08 12:10:25 +00:00
|
|
|
# NOTE: exclude darwin from platforms because Travis reports hash mismatch
|
|
|
|
platforms = with platforms; filter (x: !(elem x darwin)) unix;
|
2016-04-16 04:35:16 +01:00
|
|
|
maintainers = [ maintainers.romildo ];
|
|
|
|
};
|
|
|
|
}
|