about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/science/astronomy/calcmysky/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/applications/science/astronomy/calcmysky/default.nix')
-rw-r--r--nixpkgs/pkgs/applications/science/astronomy/calcmysky/default.nix40
1 files changed, 40 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/applications/science/astronomy/calcmysky/default.nix b/nixpkgs/pkgs/applications/science/astronomy/calcmysky/default.nix
new file mode 100644
index 000000000000..9b7f50415ecd
--- /dev/null
+++ b/nixpkgs/pkgs/applications/science/astronomy/calcmysky/default.nix
@@ -0,0 +1,40 @@
+{ lib
+, stdenv
+, fetchFromGitHub
+, cmake
+, wrapQtAppsHook
+, glm
+, eigen
+, qtbase
+, stellarium
+}:
+
+stdenv.mkDerivation rec {
+  pname = "calcmysky";
+  version = "0.3.2";
+
+  src = fetchFromGitHub {
+    owner = "10110111";
+    repo = "CalcMySky";
+    rev = "refs/tags/v${version}";
+    hash = "sha256-AP6YkORbvH8PzF869s2OWbTwTfwMC+RLJx3V3BqVy88=";
+  };
+
+  nativeBuildInputs = [ cmake wrapQtAppsHook ];
+  buildInputs = [ glm eigen qtbase ];
+
+  cmakeFlags = [ "-DQT_VERSION=6" ];
+
+  doCheck = true;
+
+  passthru.tests = {
+    inherit stellarium;
+  };
+
+  meta = with lib;{
+    description = "Simulator of light scattering by planetary atmospheres";
+    homepage = "https://github.com/10110111/CalcMySky";
+    license = licenses.gpl3Only;
+    maintainers = with maintainers; [ nickcao ];
+  };
+}