nixpkgs/pkgs/applications/science/astronomy/stellarium/default.nix

24 lines
734 B
Nix
Raw Normal View History

{ stdenv, fetchurl, cmake, freetype, libpng, mesa, gettext, openssl, qt5Full, perl, libiconv }:
2013-12-09 11:41:49 +00:00
stdenv.mkDerivation rec {
2015-07-12 19:32:16 +01:00
name = "stellarium-0.13.3";
src = fetchurl {
url = "mirror://sourceforge/stellarium/${name}.tar.gz";
2015-07-12 19:32:16 +01:00
sha256 = "1ml6z2xda4vx61agdz54x8fw1b115gwc7rcy0zhz1jh6g5jvf0ij";
};
buildInputs = [ cmake freetype libpng mesa gettext openssl perl libiconv qt5Full ];
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;
platforms = stdenv.lib.platforms.linux; # should be mesaPlatforms, but we don't have qt on darwin
maintainers = [ stdenv.lib.maintainers.simons ];
};
}