From e13a30333b0aba5b166d5d8354c0e175f1750c70 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Tue, 27 Jan 2015 13:35:08 +0100 Subject: [PATCH] stellarium: update from 0.12.4 to 0.13.2 --- .../applications/science/astronomy/stellarium/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/science/astronomy/stellarium/default.nix b/pkgs/applications/science/astronomy/stellarium/default.nix index d7ae496f5aa..ebe756a47f3 100644 --- a/pkgs/applications/science/astronomy/stellarium/default.nix +++ b/pkgs/applications/science/astronomy/stellarium/default.nix @@ -1,15 +1,15 @@ -{ stdenv, fetchurl, cmake, freetype, libpng, mesa, gettext, openssl, qt4, perl +{ stdenv, fetchurl, cmake, freetype, libpng, mesa, gettext, openssl, qt5, perl , libiconvOrEmpty }: stdenv.mkDerivation rec { - name = "stellarium-0.12.4"; + name = "stellarium-0.13.2"; src = fetchurl { url = "mirror://sourceforge/stellarium/${name}.tar.gz"; - sha256 = "11367hv9niyz9v47lf31vjsqkgc8da0vy2nhiyxgmk1i49p1pbhg"; + sha256 = "1asrq1v6vjzxd2zz92brdfs5f5b1qf8zwd7k2dpg3dl4shl8wwg5"; }; - buildInputs = [ cmake freetype libpng mesa gettext openssl qt4 perl ] + buildInputs = [ cmake freetype libpng mesa gettext openssl qt5 perl ] ++ libiconvOrEmpty; enableParallelBuilding = true;