xdgmenumaker: don't use custom installPhase
This commit is contained in:
parent
a05f04fd14
commit
328b649e11
1 changed files with 8 additions and 4 deletions
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue