Merge pull request #78758 from sikmir/gpxsee

gpxsee: enable on darwin
This commit is contained in:
Dmitry Kalinkin 2020-01-30 13:23:32 -05:00 committed by GitHub
commit dd50720010
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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