2021-01-25 09:26:54 +01:00
|
|
|
{ lib, mkDerivation, qmake, qttools, qtwebkit, qttranslations, gpsbabel }:
|
2020-04-11 13:20:47 +02:00
|
|
|
|
|
|
|
mkDerivation {
|
|
|
|
pname = "gpsbabel-gui";
|
|
|
|
|
|
|
|
inherit (gpsbabel) src version;
|
|
|
|
|
|
|
|
sourceRoot = "source/gui";
|
|
|
|
|
|
|
|
nativeBuildInputs = [ qmake qttools ];
|
|
|
|
buildInputs = [ qtwebkit ];
|
|
|
|
|
2021-01-12 12:50:23 +01:00
|
|
|
dontWrapQtApps = true;
|
|
|
|
|
2020-04-11 13:20:47 +02:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace mainwindow.cc \
|
|
|
|
--replace "QApplication::applicationDirPath() + \"/" "\"" \
|
|
|
|
--replace "QApplication::applicationDirPath() + '/' + " "" \
|
|
|
|
--replace "translator.load(full_filename)" "translator.load(filename)" \
|
|
|
|
--replace "gpsbabelfe_%1.qm" "$out/share/gpsbabel/translations/gpsbabelfe_%1.qm" \
|
|
|
|
--replace "gpsbabel_%1.qm" "$out/share/gpsbabel/translations/gpsbabel_%1.qm" \
|
|
|
|
--replace "qt_%1.qm" "${qttranslations}/translations/qt_%1.qm"
|
|
|
|
substituteInPlace formatload.cc \
|
|
|
|
--replace "QApplication::applicationDirPath() + \"/" "\""
|
|
|
|
substituteInPlace gpsbabel.desktop \
|
|
|
|
--replace "gpsbabelfe-bin" "gpsbabelfe"
|
|
|
|
'';
|
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
lrelease *.ts coretool/*.ts
|
|
|
|
'';
|
|
|
|
|
|
|
|
qtWrapperArgs = [
|
2021-01-15 06:42:41 +01:00
|
|
|
"--prefix PATH : ${lib.makeBinPath [ gpsbabel ]}"
|
2020-04-11 13:20:47 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
install -Dm755 objects/gpsbabelfe -t $out/bin
|
|
|
|
install -Dm644 gpsbabel.desktop -t $out/share/applications
|
|
|
|
install -Dm644 images/appicon.png $out/share/icons/hicolor/512x512/apps/gpsbabel.png
|
|
|
|
install -Dm644 *.qm coretool/*.qm -t $out/share/gpsbabel/translations
|
|
|
|
'';
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-04-11 13:20:47 +02:00
|
|
|
description = "Qt-based GUI for gpsbabel";
|
|
|
|
homepage = "http://www.gpsbabel.org/";
|
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ sikmir ];
|
|
|
|
platforms = with platforms; linux;
|
|
|
|
};
|
|
|
|
}
|