c7e6337bd0
GitOrigin-RevId: 08e4dc3a907a6dfec8bb3bbf1540d8abbffea22b
88 lines
1.9 KiB
Nix
88 lines
1.9 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, perl
|
|
, wrapGAppsHook
|
|
, wrapQtAppsHook
|
|
, qtbase
|
|
, qtcharts
|
|
, qtpositioning
|
|
, qtmultimedia
|
|
, qtserialport
|
|
, qttranslations
|
|
, qtwayland
|
|
, qtwebengine
|
|
, calcmysky
|
|
, qxlsx
|
|
, indilib
|
|
, libnova
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "stellarium";
|
|
version = "23.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Stellarium";
|
|
repo = "stellarium";
|
|
rev = "v${version}";
|
|
hash = "sha256-7jzS3pRklPsCTgCr3nrywfHCNlBDHuyuGGvrVoI9+A0=";
|
|
};
|
|
|
|
postPatch = lib.optionalString stdenv.isDarwin ''
|
|
substituteInPlace CMakeLists.txt \
|
|
--replace 'SET(CMAKE_INSTALL_PREFIX "''${PROJECT_BINARY_DIR}/Stellarium.app/Contents")' \
|
|
'SET(CMAKE_INSTALL_PREFIX "${placeholder "out"}/Applications/Stellarium.app/Contents")'
|
|
substituteInPlace src/CMakeLists.txt \
|
|
--replace "\''${_qt_bin_dir}/../" "${qtmultimedia}/lib/qt-6/"
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
perl
|
|
wrapGAppsHook
|
|
wrapQtAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
qtbase
|
|
qtcharts
|
|
qtpositioning
|
|
qtmultimedia
|
|
qtserialport
|
|
qttranslations
|
|
qtwebengine
|
|
calcmysky
|
|
qxlsx
|
|
indilib
|
|
libnova
|
|
] ++ lib.optionals stdenv.isLinux [
|
|
qtwayland
|
|
];
|
|
|
|
preConfigure = lib.optionalString stdenv.isDarwin ''
|
|
export LC_ALL=en_US.UTF-8
|
|
'';
|
|
|
|
# fatal error: 'QtSerialPort/QSerialPortInfo' file not found
|
|
env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-F${qtserialport}/lib";
|
|
|
|
dontWrapGApps = true;
|
|
|
|
postInstall = lib.optionalString stdenv.isDarwin ''
|
|
makeWrapper $out/Applications/Stellarium.app/Contents/MacOS/Stellarium $out/bin/stellarium
|
|
'';
|
|
|
|
preFixup = ''
|
|
qtWrapperArgs+=("''${gappsWrapperArgs[@]}")
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Free open-source planetarium";
|
|
homepage = "https://stellarium.org/";
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|