guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/01: gnu: Add stellarium.


From: John Darrington
Subject: 01/01: gnu: Add stellarium.
Date: Thu, 2 Mar 2017 01:03:49 -0500 (EST)

jmd pushed a commit to branch master
in repository guix.

commit 0558e9684f3c2558bbce4e8aaeb9ab0a317e55d0
Author: John Darrington <address@hidden>
Date:   Thu Mar 2 06:58:34 2017 +0100

    gnu: Add stellarium.
    
    * gnu/packages/astronomy.scm (stellarium): New variable.
---
 gnu/packages/astronomy.scm | 32 ++++++++++++++++++++++++++++++++
 1 file changed, 32 insertions(+)

diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm
index f390ce4..799b5fe 100644
--- a/gnu/packages/astronomy.scm
+++ b/gnu/packages/astronomy.scm
@@ -21,7 +21,13 @@
   #:use-module ((guix licenses) #:prefix license:)
   #:use-module (guix download)
   #:use-module (gnu packages image)
+  #:use-module (gnu packages compression)
+  #:use-module (gnu packages gettext)
+  #:use-module (gnu packages perl)
+  #:use-module (gnu packages gl)
+  #:use-module (gnu packages qt)
   #:use-module (gnu packages maths)
+  #:use-module (guix build-system cmake)
   #:use-module (guix build-system gnu))
 
 (define-public cfitsio
@@ -107,3 +113,29 @@ systems in a FITS image header.")
     (description "The GNU Astronomy Utilities (Gnuastro) is a suite of
 programs for the manipulation and analysis of astronomical data.")
     (license license:gpl3+)))
+
+(define-public stellarium
+  (package
+    (name "stellarium")
+    (version "0.15.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append 
"mirror://sourceforge/stellarium/Stellarium-sources/"
+                           version "/stellarium-" version ".tar.gz"))
+       (sha256
+        (base32
+         "04avigz8i8mi2x6x71bqr9np85n1p9qnvbj2hxr947f1jv22zr8g"))))
+    (build-system cmake-build-system)
+    (arguments
+     `(#:tests? #f)) ; There are no tests.
+    (home-page "https://www.gnu.org/software/stellarium";)
+    (inputs `(("qt"   ,qt)
+              ("zlib" ,zlib)))
+    (native-inputs `(("gettext" ,gettext-minimal)
+              ("perl" ,perl)))
+    (synopsis "Nocturnal sky renderering program")
+    (description "Stellarium renders a realistic image of the sky in real time.
+With Stellarium, you really see what you can see with your eyes, binoculars or 
a
+small telescope.")
+    (license license:gpl2+)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]