From cf77f59ce937546b07c3458810f7481463c4fc2b Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 7 Nov 2011 10:04:40 +0000 Subject: [PATCH] stellarium: updated to version 0.11.1 svn path=/nixpkgs/trunk/; revision=30289 --- pkgs/applications/science/astronomy/stellarium/default.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/science/astronomy/stellarium/default.nix b/pkgs/applications/science/astronomy/stellarium/default.nix index acf7721489a7..7dcc3c0b006b 100644 --- a/pkgs/applications/science/astronomy/stellarium/default.nix +++ b/pkgs/applications/science/astronomy/stellarium/default.nix @@ -1,19 +1,18 @@ {stdenv, fetchurl, cmake, freetype, libpng, mesa, gettext, openssl, qt4, perl, libiconv}: let - name = "stellarium-0.11.0"; + name = "stellarium-0.11.1"; in stdenv.mkDerivation { inherit name; src = fetchurl { url = "mirror://sourceforge/stellarium/${name}.tar.gz"; - sha256 = "dbedf47dd0744fb325d67d63d1279101be7f4259af2a5e8027f1072012dd2587"; + sha256 = "1lrz52g2li92yjsrnxqqfmgjy2jmcqszwqpaq9rz9319nd1f2zpl"; }; buildInputs = [ cmake freetype libpng mesa gettext openssl qt4 perl libiconv ]; - cmakeFlags = "-DINTL_INCLUDE_DIR= -DINTL_LIBRARIES="; preConfigure = '' sed -i -e '/typedef void (\*__GLXextFuncPtr)(void);/d' src/core/external/GLee.h '';