2011-07-10 22:17:44 +02:00
|
|
|
{stdenv, fetchurl, cmake, freetype, libpng, mesa, gettext, openssl, qt4, perl, libiconv}:
|
|
|
|
|
|
|
|
let
|
2012-10-19 10:19:41 +02:00
|
|
|
name = "stellarium-0.11.4";
|
2011-07-10 22:17:44 +02:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
inherit name;
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/stellarium/${name}.tar.gz";
|
2012-10-19 10:19:41 +02:00
|
|
|
sha256 = "8ad5e9878eb36c2c27f4754dcfc69279123e0eae02cc388074e3cf9b23746535";
|
2011-07-10 22:17:44 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ cmake freetype libpng mesa gettext openssl qt4 perl libiconv ];
|
|
|
|
|
|
|
|
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
|
2011-07-10 22:17:44 +02:00
|
|
|
maintainers = [ stdenv.lib.maintainers.simons ];
|
|
|
|
};
|
|
|
|
}
|