lol

Merge pull request #17186 from rycee/fix-and-bump/stellarium

Fix and version bump Stellarium

authored by

Peter Simons and committed by
GitHub
8593eb92 597b0b01

+9 -3
+9 -3
pkgs/applications/science/astronomy/stellarium/default.nix
··· 1 1 { stdenv, fetchurl, cmake, freetype, libpng, mesa, gettext, openssl, perl, libiconv 2 - , qtscript, qtserialport, qttools 2 + , qtscript, qtserialport, qttools, makeQtWrapper 3 3 }: 4 4 5 5 stdenv.mkDerivation rec { 6 - name = "stellarium-0.14.2"; 6 + name = "stellarium-0.14.3"; 7 7 8 8 src = fetchurl { 9 9 url = "mirror://sourceforge/stellarium/${name}.tar.gz"; 10 - sha256 = "1xxil0rv61zc08znfv83cpsc47y1gjl2f3njhz0pn5zd8jpaa15a"; 10 + sha256 = "1919wzlvhfxdxficbwhp31xlhm0571grgcmsfdp5y36z9yqwahfy"; 11 11 }; 12 12 13 + nativeBuildInputs = [ makeQtWrapper ]; 14 + 13 15 buildInputs = [ 14 16 cmake freetype libpng mesa gettext openssl perl libiconv qtscript 15 17 qtserialport qttools 16 18 ]; 17 19 18 20 enableParallelBuilding = true; 21 + 22 + postInstall = '' 23 + wrapQtProgram "$out/bin/stellarium" 24 + ''; 19 25 20 26 meta = { 21 27 description = "Free open-source planetarium";