stellarium: build with qt5Full to fix run-time crashes

The build with the modularized qt expression succeeded, but the resulting binary
would crash immediately, complaining about the lack of a "qt.labs.shader" module.
This patch works around that issue.

+2 -3
+2 -3
pkgs/applications/science/astronomy/stellarium/default.nix
··· 1 - { stdenv, fetchurl, cmake, freetype, libpng, mesa, gettext, openssl, qt5, perl 2 - , libiconv }: 3 4 stdenv.mkDerivation rec { 5 name = "stellarium-0.13.3"; ··· 9 sha256 = "1ml6z2xda4vx61agdz54x8fw1b115gwc7rcy0zhz1jh6g5jvf0ij"; 10 }; 11 12 - buildInputs = [ cmake freetype libpng mesa gettext openssl qt5.base qt5.quick1 perl libiconv ]; 13 14 enableParallelBuilding = true; 15
··· 1 + { stdenv, fetchurl, cmake, freetype, libpng, mesa, gettext, openssl, qt5Full, perl, libiconv }: 2 3 stdenv.mkDerivation rec { 4 name = "stellarium-0.13.3"; ··· 8 sha256 = "1ml6z2xda4vx61agdz54x8fw1b115gwc7rcy0zhz1jh6g5jvf0ij"; 9 }; 10 11 + buildInputs = [ cmake freetype libpng mesa gettext openssl perl libiconv qt5Full ]; 12 13 enableParallelBuilding = true; 14