2016-03-04 23:05:48 +01:00
|
|
|
{ stdenv, fetchurl, cmake, freetype, libpng, mesa, gettext, openssl, perl, libiconv
|
|
|
|
, qtscript, qtserialport, qttools
|
|
|
|
}:
|
2011-07-10 22:17:44 +02:00
|
|
|
|
2013-12-09 12:41:49 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2016-03-04 23:05:48 +01:00
|
|
|
name = "stellarium-0.14.2";
|
2011-07-10 22:17:44 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/stellarium/${name}.tar.gz";
|
2016-03-04 23:05:48 +01:00
|
|
|
sha256 = "1xxil0rv61zc08znfv83cpsc47y1gjl2f3njhz0pn5zd8jpaa15a";
|
2011-07-10 22:17:44 +02:00
|
|
|
};
|
|
|
|
|
2016-03-04 23:05:48 +01:00
|
|
|
buildInputs = [
|
|
|
|
cmake freetype libpng mesa gettext openssl perl libiconv qtscript
|
|
|
|
qtserialport qttools
|
|
|
|
];
|
2011-07-10 22:17:44 +02:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = {
|
2012-10-19 10:19:41 +02:00
|
|
|
description = "Free open-source planetarium";
|
|
|
|
homepage = "http://stellarium.org/";
|
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2011-07-14 22:53:30 +02:00
|
|
|
|
2011-07-15 14:47:20 +02:00
|
|
|
platforms = stdenv.lib.platforms.linux; # should be mesaPlatforms, but we don't have qt on darwin
|
2016-05-16 22:30:20 +02:00
|
|
|
maintainers = [ stdenv.lib.maintainers.peti ];
|
2011-07-10 22:17:44 +02:00
|
|
|
};
|
|
|
|
}
|