From f9eed769cab46683e45b97b19c451cbb2e7d49f3 Mon Sep 17 00:00:00 2001 From: Nick Cao Date: Fri, 16 Jun 2023 21:12:50 +0800 Subject: [PATCH] calcmysky: add stellarium to tests --- pkgs/applications/science/astronomy/calcmysky/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/applications/science/astronomy/calcmysky/default.nix b/pkgs/applications/science/astronomy/calcmysky/default.nix index 331b1639eb48..cf762d36de74 100644 --- a/pkgs/applications/science/astronomy/calcmysky/default.nix +++ b/pkgs/applications/science/astronomy/calcmysky/default.nix @@ -6,6 +6,7 @@ , glm , eigen , qtbase +, stellarium }: stdenv.mkDerivation rec { @@ -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";