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 pygobject3
]; ];
installPhase = '' makeFlags = [
make install PREFIX=$out DESTDIR= "PREFIX=${placeholder "out"}"
''; ];
installFlags = [
"DESTDIR="
];
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Command line tool that generates XDG menus for several window managers"; description = "Command line tool that generates XDG menus for several window managers";
homepage = https://github.com/gapan/xdgmenumaker; homepage = https://github.com/gapan/xdgmenumaker;