2015-01-27 04:35:08 -08:00
|
|
|
{ stdenv, fetchurl, cmake, freetype, libpng, mesa, gettext, openssl, qt5, perl
|
2014-11-26 15:16:50 -08:00
|
|
|
, libiconv }:
|
2011-07-10 13:17:44 -07:00
|
|
|
|
2013-12-09 03:41:49 -08:00
|
|
|
stdenv.mkDerivation rec {
|
2015-01-27 04:35:08 -08:00
|
|
|
name = "stellarium-0.13.2";
|
2011-07-10 13:17:44 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/stellarium/${name}.tar.gz";
|
2015-01-27 04:35:08 -08:00
|
|
|
sha256 = "1asrq1v6vjzxd2zz92brdfs5f5b1qf8zwd7k2dpg3dl4shl8wwg5";
|
2011-07-10 13:17:44 -07:00
|
|
|
};
|
|
|
|
|
2015-03-24 08:31:27 -07:00
|
|
|
buildInputs = [ cmake freetype libpng mesa gettext openssl qt5.base qt5.quick1 perl libiconv ];
|
2011-07-10 13:17:44 -07:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = {
|
2012-10-19 01:19:41 -07:00
|
|
|
description = "Free open-source planetarium";
|
|
|
|
homepage = "http://stellarium.org/";
|
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2011-07-14 13:53:30 -07:00
|
|
|
|
2011-07-15 05:47:20 -07:00
|
|
|
platforms = stdenv.lib.platforms.linux; # should be mesaPlatforms, but we don't have qt on darwin
|
2011-07-10 13:17:44 -07:00
|
|
|
maintainers = [ stdenv.lib.maintainers.simons ];
|
|
|
|
};
|
|
|
|
}
|