mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 18:37:04 +03:00
stellarium: enable on darwin
This commit is contained in:
parent
e736a990c1
commit
dd57dcf2a5
@ -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 ];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user