gpxlab: enable on darwin

gstqt5
Nikolay Korotkiy 2020-01-31 00:13:53 +03:00
parent b20fe28daa
commit 410a80381c
No known key found for this signature in database
GPG Key ID: D1DE6D7F693663A5
1 changed files with 8 additions and 2 deletions

View File

@ -1,4 +1,4 @@
{ mkDerivation, lib, fetchFromGitHub, qmake, qttools, qttranslations }:
{ stdenv, mkDerivation, lib, fetchFromGitHub, qmake, qttools, qttranslations }:
mkDerivation rec {
pname = "gpxlab";
@ -18,6 +18,12 @@ mkDerivation rec {
lrelease GPXLab/locale/*.ts
'';
postInstall = lib.optionalString stdenv.isDarwin ''
mkdir -p $out/Applications
mv GPXLab/GPXLab.app $out/Applications
wrapQtApp $out/Applications/GPXLab.app/Contents/MacOS/GPXLab
'';
enableParallelBuilding = true;
meta = with lib; {
@ -29,6 +35,6 @@ mkDerivation rec {
'';
license = licenses.gpl3;
maintainers = with maintainers; [ sikmir ];
platforms = platforms.linux;
platforms = with platforms; linux ++ darwin;
};
}