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