2016-08-30 19:28:48 +02:00
|
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
|
|
|
|
;;; Copyright © 2016 John Darrington <jmd@gnu.org>
|
2018-01-10 15:52:19 +01:00
|
|
|
|
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
2018-12-29 19:13:48 +01:00
|
|
|
|
;;; Copyright © 2018 Efraim Flashner <efraim@flashner.co.il>
|
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)
|
2018-01-31 05:12:38 +01:00
|
|
|
|
#:use-module (guix utils)
|
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)
|
|
|
|
|
#:use-module (gnu packages perl)
|
|
|
|
|
#:use-module (gnu packages gl)
|
|
|
|
|
#:use-module (gnu packages qt)
|
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)
|
2016-08-30 19:28:48 +02:00
|
|
|
|
#:use-module (guix build-system gnu))
|
|
|
|
|
|
|
|
|
|
(define-public cfitsio
|
|
|
|
|
(package
|
|
|
|
|
(name "cfitsio")
|
2018-06-06 04:32:50 +02:00
|
|
|
|
(version "3.450")
|
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/"
|
|
|
|
|
name (string-replace-substring version "." "") ".tar.gz"))
|
2016-08-30 19:28:48 +02:00
|
|
|
|
(sha256
|
2018-06-06 04:32:50 +02:00
|
|
|
|
(base32 "0bmrkw6w65zb0k3mszaaqy1f4zjm2hl7njww74nb5v38wvdi4q5z"))))
|
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")
|
2018-10-06 18:18:22 +02:00
|
|
|
|
(version "5.20")
|
2016-08-30 21:08:23 +02:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append
|
2016-09-12 16:34:33 +02:00
|
|
|
|
"ftp://ftp.atnf.csiro.au/pub/software/wcslib/" name "-" version
|
|
|
|
|
".tar.bz2"))
|
2016-08-30 21:08:23 +02:00
|
|
|
|
(sha256
|
2018-10-06 18:18:22 +02:00
|
|
|
|
(base32 "1c8g9kv4dxrnawnqi4spi2p10s2xs7x75pdfxhbqxgcc97dkgh0b"))))
|
2016-08-30 21:08:23 +02:00
|
|
|
|
(inputs
|
|
|
|
|
`(("cfitsio" ,cfitsio)))
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(arguments
|
2018-06-06 04:02:15 +02:00
|
|
|
|
`(#:phases
|
|
|
|
|
(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")
|
2018-12-29 19:13:48 +01:00
|
|
|
|
(version "0.8")
|
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
|
2018-12-29 19:13:48 +01:00
|
|
|
|
"0gx6iar3z07k9sdvpa6kchsz6fpk94xn5vcvbcigssl2dwqmlnkb"))))
|
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
|
|
|
|
|
`(("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-01-11 01:29:33 +01:00
|
|
|
|
(version "0.18.3")
|
2017-03-02 17:57:25 +01:00
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
2018-01-05 20:49:13 +01:00
|
|
|
|
(uri (string-append "https://github.com/Stellarium/" name
|
|
|
|
|
"/releases/download/v" version
|
|
|
|
|
"/" name "-" version ".tar.gz"))
|
2017-03-02 17:57:25 +01:00
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2019-01-11 01:29:33 +01:00
|
|
|
|
"1mm8rjcb8j56m3kfigpix5vxviw1616kvl9ws2s3s5gdyngljrc3"))))
|
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
|
|
|
|
|
`(("gettext" ,gettext-minimal) ; xgettext is used at compile time
|
2017-03-03 12:35:17 +01:00
|
|
|
|
("perl" ,perl) ; For pod2man
|
|
|
|
|
("qtbase" ,qtbase) ; Qt MOC is needed at compile time
|
|
|
|
|
("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
|
2019-01-11 01:29:33 +01:00
|
|
|
|
;; Skip a test that assumes Stellarium is "installed":
|
|
|
|
|
;; https://bugs.gentoo.org/674472
|
|
|
|
|
(add-after 'unpack 'patch-tests
|
|
|
|
|
(lambda _
|
|
|
|
|
(substitute* "src/tests/testEphemeris.cpp"
|
|
|
|
|
(("ifndef Q_OS_WIN") "if 0"))
|
|
|
|
|
#t))
|
2018-01-05 20:49:13 +01:00
|
|
|
|
(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+)))
|