stellarium: enable on darwin

gstqt5
Dmitry Kalinkin 2020-09-27 16:56:41 -04:00
parent e736a990c1
commit dd57dcf2a5
No known key found for this signature in database
GPG Key ID: 5157B3EC8B2CA333
1 changed files with 12 additions and 3 deletions

View File

@ -1,4 +1,4 @@
{ mkDerivation, lib, fetchFromGitHub
{ stdenv, lib, mkDerivation, fetchFromGitHub
, cmake, freetype, libpng, libGLU, libGL, openssl, perl, libiconv
, qtscript, qtserialport, qttools
, qtmultimedia, qtlocation, qtbase, wrapQtAppsHook
@ -22,12 +22,21 @@ mkDerivation rec {
qtmultimedia qtlocation qtbase
];
preConfigure = lib.optionalString stdenv.isDarwin ''
substituteInPlace CMakeLists.txt \
--replace 'SET(CMAKE_INSTALL_PREFIX "''${PROJECT_BINARY_DIR}/Stellarium.app/Contents")' \
'SET(CMAKE_INSTALL_PREFIX "${placeholder "out"}/Stellarium.app/Contents")'
'';
postFixup = lib.optionalString stdenv.isDarwin ''
wrapQtApp "$out"/Stellarium.app/Contents/MacOS/stellarium
'';
meta = with lib; {
description = "Free open-source planetarium";
homepage = "http://stellarium.org/";
license = licenses.gpl2;
platforms = platforms.linux; # should be mesaPlatforms, but we don't have qt on darwin
platforms = platforms.unix;
maintainers = with maintainers; [ peti ma27 ];
};
}