2015-07-14 21:39:34 +01:00
|
|
|
{ stdenv, fetchurl, cmake, freetype, libpng, mesa, gettext, openssl, qt5Full, perl, libiconv }:
|
2011-07-10 21:17:44 +01:00
|
|
|
|
2013-12-09 11:41:49 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2015-07-12 19:32:16 +01:00
|
|
|
name = "stellarium-0.13.3";
|
2011-07-10 21:17:44 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/stellarium/${name}.tar.gz";
|
2015-07-12 19:32:16 +01:00
|
|
|
sha256 = "1ml6z2xda4vx61agdz54x8fw1b115gwc7rcy0zhz1jh6g5jvf0ij";
|
2011-07-10 21:17:44 +01:00
|
|
|
};
|
|
|
|
|
2015-07-14 21:39:34 +01:00
|
|
|
buildInputs = [ cmake freetype libpng mesa gettext openssl perl libiconv qt5Full ];
|
2011-07-10 21:17:44 +01:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = {
|
2012-10-19 09:19:41 +01:00
|
|
|
description = "Free open-source planetarium";
|
|
|
|
homepage = "http://stellarium.org/";
|
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2011-07-14 21:53:30 +01:00
|
|
|
|
2011-07-15 13:47:20 +01:00
|
|
|
platforms = stdenv.lib.platforms.linux; # should be mesaPlatforms, but we don't have qt on darwin
|
2011-07-10 21:17:44 +01:00
|
|
|
maintainers = [ stdenv.lib.maintainers.simons ];
|
|
|
|
};
|
|
|
|
}
|