27 lines
743 B
Nix
27 lines
743 B
Nix
{stdenv, fetchurl, cmake, freetype, libpng, mesa, gettext, openssl, qt4, perl, libiconv}:
|
|
|
|
let
|
|
name = "stellarium-0.12.1";
|
|
in
|
|
stdenv.mkDerivation {
|
|
inherit name;
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/stellarium/${name}.tar.gz";
|
|
sha256 = "02qfp56mkg3bqggv3ndx8v6zfswg51gkczwiqy5c9y4rw28hazla";
|
|
};
|
|
|
|
buildInputs = [ cmake freetype libpng mesa gettext openssl qt4 perl libiconv ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = {
|
|
description = "Free open-source planetarium";
|
|
homepage = "http://stellarium.org/";
|
|
license = stdenv.lib.licenses.gpl2;
|
|
|
|
platforms = stdenv.lib.platforms.linux; # should be mesaPlatforms, but we don't have qt on darwin
|
|
maintainers = [ stdenv.lib.maintainers.simons ];
|
|
};
|
|
}
|