apmplanner2: fixed wrong path in .desktop file

The `apmplanner2.desktop` file defaults to `/usr/share/...` regardless which out
prefix is given to make. So I chose to fix it manually.
This commit is contained in:
wucke13 2018-08-25 00:39:58 +02:00
parent bd1ebb0fa0
commit b7e695461e

View File

@ -23,8 +23,12 @@ stdenv.mkDerivation rec {
qmakeFlags = [ "apm_planner.pro" ];
# this ugly hack is necessary, as `bin/apmplanner2` needs the contents of `share/APMPlanner2` inside of `bin/`
preFixup = "ln --relative --symbolic $out/share/APMPlanner2/* $out/bin/";
preFixup = ''
ln --relative --symbolic $out/share/APMPlanner2/* $out/bin/
substituteInPlace $out/share/applications/apmplanner2.desktop \
--replace /usr $out
'';
enableParallelBuilding = true;
meta = {