2016-08-30 19:28:48 +02:00
|
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
|
|
|
|
;;; Copyright © 2016 John Darrington <jmd@gnu.org>
|
2019-06-09 15:59:45 +02:00
|
|
|
|
;;; Copyright © 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr>
|
2019-04-18 16:00:46 +02:00
|
|
|
|
;;; Copyright © 2018, 2019 Efraim Flashner <efraim@flashner.co.il>
|
2019-05-19 09:09:48 +02:00
|
|
|
|
;;; Copyright © 2019 by Amar Singh <nly@disroot.org>
|
2016-08-30 19:28:48 +02:00
|
|
|
|
;;;
|
|
|
|
|
;;; This file is part of GNU Guix.
|
|
|
|
|
;;;
|
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
|
;;; your option) any later version.
|
|
|
|
|
;;;
|
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
|
;;;
|
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
|
|
(define-module (gnu packages astronomy)
|
|
|
|
|
#:use-module (guix packages)
|
2016-08-30 21:09:56 +02:00
|
|
|
|
#:use-module ((guix licenses) #:prefix license:)
|
2016-08-30 19:28:48 +02:00
|
|
|
|
#:use-module (guix download)
|
2019-05-19 09:09:48 +02:00
|
|
|
|
#:use-module (guix git-download)
|
2018-01-31 05:12:38 +01:00
|
|
|
|
#:use-module (guix utils)
|
2019-04-18 16:00:46 +02:00
|
|
|
|
#:use-module (gnu packages autotools)
|
2016-08-30 21:09:56 +02:00
|
|
|
|
#:use-module (gnu packages image)
|
2017-03-02 06:58:34 +01:00
|
|
|
|
#:use-module (gnu packages compression)
|
|
|
|
|
#:use-module (gnu packages gettext)
|
2019-05-19 09:09:48 +02:00
|
|
|
|
#:use-module (gnu packages version-control)
|
|
|
|
|
#:use-module (gnu packages pkg-config)
|
|
|
|
|
#:use-module (gnu packages xiph)
|
|
|
|
|
#:use-module (gnu packages pretty-print)
|
|
|
|
|
#:use-module (gnu packages algebra)
|
|
|
|
|
#:use-module (gnu packages lua)
|
2017-03-02 06:58:34 +01:00
|
|
|
|
#:use-module (gnu packages perl)
|
|
|
|
|
#:use-module (gnu packages gl)
|
|
|
|
|
#:use-module (gnu packages qt)
|
2019-06-13 19:23:22 +02:00
|
|
|
|
#:use-module (gnu packages gtk)
|
|
|
|
|
#:use-module (gnu packages gnome)
|
2016-08-30 21:09:56 +02:00
|
|
|
|
#:use-module (gnu packages maths)
|
2017-03-02 06:58:34 +01:00
|
|
|
|
#:use-module (guix build-system cmake)
|
2019-06-13 19:23:22 +02:00
|
|
|
|
#:use-module (guix build-system gnu)
|
|
|
|
|
#:use-module (srfi srfi-1))
|
2016-08-30 19:28:48 +02:00
|
|
|
|
|
|
|
|
|
(define-public cfitsio
|
|
|
|
|
(package
|
|
|
|
|
(name "cfitsio")
|
2019-06-09 15:59:45 +02:00
|
|
|
|
(version "3.47")
|
2016-08-30 19:28:48 +02:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append
|
2018-01-31 05:12:38 +01:00
|
|
|
|
"http://heasarc.gsfc.nasa.gov/FTP/software/fitsio/c/"
|
2019-06-09 15:59:45 +02:00
|
|
|
|
name "-" version ".tar.gz"))
|
2016-08-30 19:28:48 +02:00
|
|
|
|
(sha256
|
2019-06-09 15:59:45 +02:00
|
|
|
|
(base32 "1vzlxnrjckz78p2wf148v2z3krkwnykfqvlj42sz3q711vqid1a1"))))
|
2016-08-30 19:28:48 +02:00
|
|
|
|
(build-system gnu-build-system)
|
2018-01-31 05:12:38 +01:00
|
|
|
|
;; XXX Building with curl currently breaks wcslib. It doesn't use
|
|
|
|
|
;; pkg-config and hence won't link with -lcurl.
|
2016-08-30 19:28:48 +02:00
|
|
|
|
(arguments
|
|
|
|
|
`(#:tests? #f ; no tests
|
|
|
|
|
#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(add-after 'unpack 'patch-paths
|
|
|
|
|
(lambda _
|
2016-09-12 16:34:33 +02:00
|
|
|
|
(substitute* "Makefile.in" (("/bin/") ""))
|
|
|
|
|
#t)))))
|
2018-01-31 04:09:29 +01:00
|
|
|
|
(home-page "https://heasarc.gsfc.nasa.gov/fitsio/fitsio.html")
|
2016-08-30 19:28:48 +02:00
|
|
|
|
(synopsis "Library for reading and writing FITS files")
|
|
|
|
|
(description "CFITSIO provides simple high-level routines for reading and
|
2018-01-31 04:08:59 +01:00
|
|
|
|
writing @dfn{FITS} (Flexible Image Transport System) files that insulate the
|
2016-08-30 19:28:48 +02:00
|
|
|
|
programmer from the internal complexities of the FITS format. CFITSIO also
|
|
|
|
|
provides many advanced features for manipulating and filtering the information
|
|
|
|
|
in FITS files.")
|
|
|
|
|
(license (license:non-copyleft "file://License.txt"
|
|
|
|
|
"See License.txt in the distribution."))))
|
2016-08-30 21:08:23 +02:00
|
|
|
|
|
|
|
|
|
(define-public wcslib
|
|
|
|
|
(package
|
|
|
|
|
(name "wcslib")
|
2019-08-16 21:14:22 +02:00
|
|
|
|
(version "6.4")
|
2016-08-30 21:08:23 +02:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append
|
2019-08-16 21:14:22 +02:00
|
|
|
|
"ftp://ftp.atnf.csiro.au/pub/software/wcslib/wcslib-" version
|
2016-09-12 16:34:33 +02:00
|
|
|
|
".tar.bz2"))
|
2016-08-30 21:08:23 +02:00
|
|
|
|
(sha256
|
2019-08-16 21:14:22 +02:00
|
|
|
|
(base32 "003h23m6d5wcs29v2vbnl63f3z35k5x70lpsqlz5c9bp1bvizh8k"))))
|
2016-08-30 21:08:23 +02:00
|
|
|
|
(inputs
|
|
|
|
|
`(("cfitsio" ,cfitsio)))
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(arguments
|
2019-07-12 23:59:09 +02:00
|
|
|
|
`(#:configure-flags
|
|
|
|
|
(list (string-append "--with-cfitsiolib="
|
|
|
|
|
(assoc-ref %build-inputs "cfitsio") "/lib")
|
|
|
|
|
(string-append "--with-cfitsioinc="
|
|
|
|
|
(assoc-ref %build-inputs "cfitsio") "/include"))
|
|
|
|
|
#:phases
|
2018-06-06 04:02:15 +02:00
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(add-before 'configure 'patch-/bin/sh
|
|
|
|
|
(lambda _
|
|
|
|
|
(substitute* "makedefs.in"
|
|
|
|
|
(("/bin/sh") "sh"))
|
|
|
|
|
#t))
|
|
|
|
|
(delete 'install-license-files)) ; installed by ‘make install’
|
2018-10-06 18:18:22 +02:00
|
|
|
|
;; Parallel execution of the test suite is not supported.
|
2018-06-06 04:02:15 +02:00
|
|
|
|
#:parallel-tests? #f))
|
2017-09-20 14:02:19 +02:00
|
|
|
|
(home-page "https://www.atnf.csiro.au/people/mcalabre/WCS")
|
2016-08-31 20:49:57 +02:00
|
|
|
|
(synopsis "Library which implements the FITS WCS standard")
|
2018-01-10 15:59:00 +01:00
|
|
|
|
(description "The FITS \"World Coordinate System\" (@dfn{WCS}) standard
|
|
|
|
|
defines keywords and usage that provide for the description of astronomical
|
|
|
|
|
coordinate systems in a @dfn{FITS} (Flexible Image Transport System) image
|
|
|
|
|
header.")
|
2016-08-30 21:08:23 +02:00
|
|
|
|
(license license:lgpl3+)))
|
2016-08-30 21:09:56 +02:00
|
|
|
|
|
|
|
|
|
(define-public gnuastro
|
|
|
|
|
(package
|
|
|
|
|
(name "gnuastro")
|
2019-08-29 09:23:58 +02:00
|
|
|
|
(version "0.10")
|
2016-08-30 21:09:56 +02:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "mirror://gnu/gnuastro/gnuastro-"
|
2018-12-29 19:13:48 +01:00
|
|
|
|
version ".tar.lz"))
|
2016-08-30 21:09:56 +02:00
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2019-08-29 09:23:58 +02:00
|
|
|
|
"0gmhmh0yddb2aql4hd5ffrr0d4hrmh4pa3yln0n186hslqinp81b"))))
|
2016-08-30 21:09:56 +02:00
|
|
|
|
(inputs
|
|
|
|
|
`(("cfitsio" ,cfitsio)
|
|
|
|
|
("gsl" ,gsl)
|
2017-12-24 20:10:25 +01:00
|
|
|
|
("libjpeg" ,libjpeg)
|
2018-06-06 16:49:17 +02:00
|
|
|
|
("libtiff" ,libtiff)
|
|
|
|
|
("wcslib" ,wcslib)
|
|
|
|
|
("zlib" ,zlib)))
|
2018-12-29 19:13:48 +01:00
|
|
|
|
(native-inputs
|
2019-04-18 16:00:46 +02:00
|
|
|
|
`(("libtool" ,libtool)
|
|
|
|
|
("lzip" ,lzip)))
|
2016-08-30 21:09:56 +02:00
|
|
|
|
(build-system gnu-build-system)
|
2017-03-30 00:48:16 +02:00
|
|
|
|
(home-page "https://www.gnu.org/software/gnuastro/")
|
2017-06-08 23:33:31 +02:00
|
|
|
|
(synopsis "Astronomy utilities")
|
2016-08-30 21:09:56 +02:00
|
|
|
|
(description "The GNU Astronomy Utilities (Gnuastro) is a suite of
|
|
|
|
|
programs for the manipulation and analysis of astronomical data.")
|
|
|
|
|
(license license:gpl3+)))
|
2017-03-02 06:58:34 +01:00
|
|
|
|
|
|
|
|
|
(define-public stellarium
|
|
|
|
|
(package
|
|
|
|
|
(name "stellarium")
|
2019-06-22 22:14:49 +02:00
|
|
|
|
(version "0.19.1")
|
2019-06-22 22:16:44 +02:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "https://github.com/Stellarium/stellarium"
|
|
|
|
|
"/releases/download/v" version
|
|
|
|
|
"/stellarium-" version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32 "0s7v5iyhah258k83kvy2a91a3mdf34r150lcar4mmdsrrcmas98g"))))
|
2017-03-02 06:58:34 +01:00
|
|
|
|
(build-system cmake-build-system)
|
2017-03-03 11:29:41 +01:00
|
|
|
|
(inputs
|
2017-03-03 12:35:17 +01:00
|
|
|
|
`(("qtbase" ,qtbase)
|
2017-06-23 16:52:27 +02:00
|
|
|
|
("qtlocation" ,qtlocation)
|
2017-03-03 12:35:17 +01:00
|
|
|
|
("qtmultimedia" ,qtmultimedia)
|
|
|
|
|
("qtscript" ,qtscript)
|
|
|
|
|
("qtserialport" ,qtserialport)
|
2017-03-03 11:29:41 +01:00
|
|
|
|
("zlib" ,zlib)))
|
|
|
|
|
(native-inputs
|
2019-06-22 22:14:49 +02:00
|
|
|
|
`(("gettext" ,gettext-minimal) ; xgettext is used at compile time
|
|
|
|
|
("perl" ,perl) ; For pod2man
|
|
|
|
|
("qtbase" ,qtbase) ; Qt MOC is needed at compile time
|
2017-03-03 12:35:17 +01:00
|
|
|
|
("qttools" ,qttools)))
|
2017-03-02 17:57:25 +01:00
|
|
|
|
(arguments
|
2018-01-05 20:49:13 +01:00
|
|
|
|
`(#:test-target "test"
|
|
|
|
|
#:configure-flags (list "-DENABLE_TESTING=1"
|
|
|
|
|
(string-append
|
|
|
|
|
"-DCMAKE_CXX_FLAGS=-isystem "
|
|
|
|
|
(assoc-ref %build-inputs "qtserialport")
|
|
|
|
|
"/include/qt5"))
|
|
|
|
|
#:phases (modify-phases %standard-phases
|
|
|
|
|
(add-before 'check 'set-offscreen-display
|
|
|
|
|
(lambda _
|
|
|
|
|
;; make Qt render "offscreen", required for tests
|
|
|
|
|
(setenv "QT_QPA_PLATFORM" "offscreen")
|
|
|
|
|
(setenv "HOME" "/tmp")
|
|
|
|
|
#t)))))
|
2018-08-16 02:14:47 +02:00
|
|
|
|
(home-page "https://stellarium.org/")
|
2017-03-02 17:57:25 +01:00
|
|
|
|
(synopsis "3D sky viewer")
|
|
|
|
|
(description "Stellarium is a planetarium. It shows a realistic sky in
|
|
|
|
|
3D, just like what you see with the naked eye, binoculars, or a telescope. It
|
|
|
|
|
can be used to control telescopes over a serial port for tracking celestial
|
|
|
|
|
objects.")
|
2017-03-02 06:58:34 +01:00
|
|
|
|
(license license:gpl2+)))
|
2019-05-19 09:09:48 +02:00
|
|
|
|
|
|
|
|
|
(define-public celestia
|
|
|
|
|
(let ((commit "9dbdf29c4ac3d20afb2d9a80d3dff241ecf81dce"))
|
|
|
|
|
(package
|
|
|
|
|
(name "celestia")
|
|
|
|
|
(version (git-version "1.6.1" "815" commit))
|
|
|
|
|
(source (origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "https://github.com/celestiaproject/celestia")
|
|
|
|
|
(commit commit)))
|
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"00xibg87l1arzifakgj7s828x9pszcgx7x7ij88a561ig49ryh78"))))
|
|
|
|
|
(build-system cmake-build-system)
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("perl" ,perl)
|
|
|
|
|
("libgit2" ,libgit2)
|
|
|
|
|
("pkg-config" ,pkg-config)
|
|
|
|
|
("libtool" ,libtool)
|
|
|
|
|
("gettext" ,gettext-minimal)))
|
|
|
|
|
(inputs
|
|
|
|
|
`(("glu" ,glu)
|
|
|
|
|
("glew" ,glew)
|
|
|
|
|
("libtheora" ,libtheora)
|
|
|
|
|
("libjpeg" ,libjpeg)
|
|
|
|
|
("libpng" ,libpng)
|
|
|
|
|
;; maybe required?
|
|
|
|
|
("mesa" ,mesa)
|
|
|
|
|
;; optional: fmtlib, Eigen3;
|
|
|
|
|
("fmt" ,fmt)
|
|
|
|
|
("eigen" ,eigen)
|
|
|
|
|
;; glut: for glut interface
|
|
|
|
|
("freeglut" ,freeglut)))
|
|
|
|
|
(propagated-inputs
|
|
|
|
|
`(("lua" ,lua)))
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:configure-flags '("-DENABLE_GLUT=ON" "-DENABLE_QT=OFF")
|
|
|
|
|
#:tests? #f)) ;no tests
|
|
|
|
|
(home-page "https://celestia.space/")
|
|
|
|
|
(synopsis "Real-time 3D visualization of space")
|
|
|
|
|
(description
|
|
|
|
|
"This simulation program lets you explore our universe in three
|
|
|
|
|
dimensions. Celestia simulates many different types of celestial objects.
|
|
|
|
|
From planets and moons to star clusters and galaxies, you can visit every
|
|
|
|
|
object in the expandable database and view it from any point in space and
|
|
|
|
|
time. The position and movement of solar system objects is calculated
|
|
|
|
|
accurately in real time at any rate desired.")
|
|
|
|
|
(license license:gpl2+))))
|
2019-06-13 19:23:22 +02:00
|
|
|
|
|
|
|
|
|
(define-public celestia-gtk
|
|
|
|
|
(package
|
|
|
|
|
(inherit celestia)
|
|
|
|
|
(name "celestia-gtk")
|
|
|
|
|
(inputs
|
|
|
|
|
(append (alist-delete "freeglut" (package-inputs celestia))
|
|
|
|
|
`(("gtk2" ,gtk+-2)
|
|
|
|
|
("gtkglext" ,gtkglext))))
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:configure-flags '("-DENABLE_GTK=ON" "-DENABLE_QT=OFF")
|
|
|
|
|
#:tests? #f))))
|
2019-07-14 19:51:39 +02:00
|
|
|
|
|
|
|
|
|
(define-public libnova
|
|
|
|
|
(package
|
|
|
|
|
(name "libnova")
|
|
|
|
|
(version "0.16")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "https://git.code.sf.net/p/libnova/libnova.git")
|
|
|
|
|
(commit (string-append "v" version))))
|
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"0icwylwkixihzni0kgl0j8dx3qhqvym6zv2hkw2dy6v9zvysrb1b"))))
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(add-after 'unpack 'patch-git-version
|
|
|
|
|
(lambda _
|
|
|
|
|
(substitute* "./git-version-gen"
|
|
|
|
|
(("/bin/sh") (which "sh")))
|
|
|
|
|
#t)))))
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("autoconf" ,autoconf)
|
|
|
|
|
("automake" ,automake)
|
|
|
|
|
("libtool" ,libtool)))
|
|
|
|
|
(synopsis "Celestial mechanics, astrometry and astrodynamics library")
|
|
|
|
|
(description "Libnova is a general purpose, double precision, Celestial
|
|
|
|
|
Mechanics, Astrometry and Astrodynamics library.")
|
|
|
|
|
(home-page "http://libnova.sourceforge.net/")
|
|
|
|
|
(license (list license:lgpl2.0+
|
|
|
|
|
license:gpl2+)))) ; examples/transforms.c & lntest/*.c
|
|
|
|
|
|