2018-06-24 20:26:58 +02:00
|
|
|
{ mkDerivation, lib, 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
|
2019-07-05 17:42:08 +02:00
|
|
|
, qtmultimedia, qtlocation, qtbase, wrapQtAppsHook
|
2016-03-04 23:05:48 +01:00
|
|
|
}:
|
2011-07-10 22:17:44 +02:00
|
|
|
|
2017-05-17 21:26:11 +02:00
|
|
|
mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "stellarium";
|
2019-10-08 23:17:20 +02:00
|
|
|
version = "0.19.2";
|
2011-07-10 22:17:44 +02:00
|
|
|
|
2018-06-24 20:26:58 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Stellarium";
|
|
|
|
repo = "stellarium";
|
|
|
|
rev = "v${version}";
|
2019-10-08 23:17:20 +02:00
|
|
|
sha256 = "1ki3s4smazr6xfkr0grrmjp2s8yjprismiaq7l54d0il7rkvhibd";
|
2011-07-10 22:17:44 +02:00
|
|
|
};
|
|
|
|
|
2019-07-05 17:42:08 +02:00
|
|
|
nativeBuildInputs = [ cmake perl wrapQtAppsHook ];
|
2016-07-22 22:21:17 +02:00
|
|
|
|
2016-03-04 23:05:48 +01:00
|
|
|
buildInputs = [
|
2019-11-10 17:44:34 +01:00
|
|
|
freetype libpng libGLU libGL openssl libiconv qtscript qtserialport qttools
|
2019-07-05 17:42:08 +02:00
|
|
|
qtmultimedia qtlocation qtbase
|
2016-03-04 23:05:48 +01:00
|
|
|
];
|
2011-07-10 22:17:44 +02:00
|
|
|
|
2017-05-17 21:26:11 +02:00
|
|
|
meta = with lib; {
|
2012-10-19 10:19:41 +02:00
|
|
|
description = "Free open-source planetarium";
|
2017-08-01 22:03:30 +02:00
|
|
|
homepage = http://stellarium.org/;
|
2017-05-17 21:26:11 +02:00
|
|
|
license = licenses.gpl2;
|
2011-07-14 22:53:30 +02:00
|
|
|
|
2017-05-17 21:26:11 +02:00
|
|
|
platforms = platforms.linux; # should be mesaPlatforms, but we don't have qt on darwin
|
2017-11-19 12:01:15 +01:00
|
|
|
maintainers = with maintainers; [ peti ma27 ];
|
2011-07-10 22:17:44 +02:00
|
|
|
};
|
|
|
|
}
|