diff --git a/pkgs/applications/science/astronomy/calcmysky/default.nix b/pkgs/applications/science/astronomy/calcmysky/default.nix index bff3f39e8975..cf762d36de74 100644 --- a/pkgs/applications/science/astronomy/calcmysky/default.nix +++ b/pkgs/applications/science/astronomy/calcmysky/default.nix @@ -6,17 +6,18 @@ , glm , eigen , qtbase +, stellarium }: stdenv.mkDerivation rec { pname = "calcmysky"; - version = "0.3.0"; + version = "0.3.1"; src = fetchFromGitHub { owner = "10110111"; repo = "CalcMySky"; rev = "refs/tags/v${version}"; - hash = "sha256-QVKyPyod0pxoFge/GAcle9AWXPCLR/seBVWRfs9I9tE="; + hash = "sha256-oqYOXoIPVqCD3HL7ShNoF89W725hFHX0Ei/yVJNTS5I="; }; nativeBuildInputs = [ cmake wrapQtAppsHook ]; @@ -26,6 +27,10 @@ stdenv.mkDerivation rec { doCheck = true; + passthru.tests = { + inherit stellarium; + }; + meta = with lib;{ description = "Simulator of light scattering by planetary atmospheres"; homepage = "https://github.com/10110111/CalcMySky";