1be0098156
GitOrigin-RevId: 667e5581d16745bcda791300ae7e2d73f49fff25
64 lines
1.2 KiB
Nix
64 lines
1.2 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, perl
|
|
, wrapQtAppsHook
|
|
, qtbase
|
|
, qtcharts
|
|
, qtlocation
|
|
, qtmultimedia
|
|
, qtscript
|
|
, qtserialport
|
|
, qtwebengine
|
|
, calcmysky
|
|
, qxlsx
|
|
, indilib
|
|
, libnova
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "stellarium";
|
|
version = "1.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Stellarium";
|
|
repo = "stellarium";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-6EAykJ0yWeU1EBR5+7JjWGUVBE1DKW+W8yJOt0smkaE=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
perl
|
|
wrapQtAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
qtbase
|
|
qtcharts
|
|
qtlocation
|
|
qtmultimedia
|
|
qtscript
|
|
qtserialport
|
|
qtwebengine
|
|
calcmysky
|
|
qxlsx
|
|
indilib
|
|
libnova
|
|
];
|
|
|
|
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"}/Applications/Stellarium.app/Contents")'
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Free open-source planetarium";
|
|
homepage = "https://stellarium.org/";
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ ma27 ];
|
|
};
|
|
}
|