2015-07-14 13:39:34 -07:00
|
|
|
{ stdenv, fetchurl, cmake, freetype, libpng, mesa, gettext, openssl, qt5Full, perl, libiconv }:
|
2011-07-10 13:17:44 -07:00
|
|
|
|
2013-12-09 03:41:49 -08:00
|
|
|
stdenv.mkDerivation rec {
|
2015-07-12 11:32:16 -07:00
|
|
|
name = "stellarium-0.13.3";
|
2011-07-10 13:17:44 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/stellarium/${name}.tar.gz";
|
2015-07-12 11:32:16 -07:00
|
|
|
sha256 = "1ml6z2xda4vx61agdz54x8fw1b115gwc7rcy0zhz1jh6g5jvf0ij";
|
2011-07-10 13:17:44 -07:00
|
|
|
};
|
|
|
|
|
2015-07-14 13:39:34 -07:00
|
|
|
buildInputs = [ cmake freetype libpng mesa gettext openssl perl libiconv qt5Full ];
|
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 ];
|
|
|
|
};
|
|
|
|
}
|