xdgmenumaker: don't use custom installPhase

This commit is contained in:
worldofpeace 2019-12-04 23:29:12 -05:00
parent a05f04fd14
commit 328b649e11

View File

@ -30,10 +30,14 @@ python3Packages.buildPythonApplication rec {
pygobject3
];
installPhase = ''
make install PREFIX=$out DESTDIR=
'';
makeFlags = [
"PREFIX=${placeholder "out"}"
];
installFlags = [
"DESTDIR="
];
meta = with stdenv.lib; {
description = "Command line tool that generates XDG menus for several window managers";
homepage = https://github.com/gapan/xdgmenumaker;