nixpkgs-suyu/pkgs/applications/science/astronomy/stellarium/default.nix

43 lines
1.2 KiB
Nix
Raw Normal View History

2020-09-27 22:56:41 +02:00
{ stdenv, lib, mkDerivation, fetchFromGitHub
2019-11-10 17:44:34 +01:00
, cmake, freetype, libpng, libGLU, libGL, openssl, perl, libiconv
2017-05-17 21:26:11 +02:00
, qtscript, qtserialport, qttools
, qtmultimedia, qtlocation, qtbase, wrapQtAppsHook
}:
2017-05-17 21:26:11 +02:00
mkDerivation rec {
pname = "stellarium";
version = "0.21.1";
2018-06-24 20:26:58 +02:00
src = fetchFromGitHub {
owner = "Stellarium";
repo = "stellarium";
rev = "v${version}";
sha256 = "sha256-dAdB57phD5phl8dQZIHtqtnA2LZqR+JoXTzIBtqBevA=";
};
nativeBuildInputs = [ cmake perl wrapQtAppsHook ];
buildInputs = [
2019-11-10 17:44:34 +01:00
freetype libpng libGLU libGL openssl libiconv qtscript qtserialport qttools
qtmultimedia qtlocation qtbase
];
2020-09-27 22:56:41 +02:00
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
'';
2017-05-17 21:26:11 +02:00
meta = with lib; {
2012-10-19 10:19:41 +02:00
description = "Free open-source planetarium";
homepage = "http://stellarium.org/";
2017-05-17 21:26:11 +02:00
license = licenses.gpl2;
2020-09-27 22:56:41 +02:00
platforms = platforms.unix;
maintainers = with maintainers; [ peti ma27 ];
};
}