mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: Add gnuastro
* gnu/packages/astronomy.scm (gnuastro): New variable.
This commit is contained in:
parent
2be83f6e8d
commit
c9bd15c1d8
1 changed files with 27 additions and 1 deletions
|
@ -18,8 +18,10 @@
|
|||
|
||||
(define-module (gnu packages astronomy)
|
||||
#:use-module (guix packages)
|
||||
#:use-module (guix licenses)
|
||||
#:use-module ((guix licenses) #:prefix license:)
|
||||
#:use-module (guix download)
|
||||
#:use-module (gnu packages image)
|
||||
#:use-module (gnu packages maths)
|
||||
#:use-module (guix build-system gnu))
|
||||
|
||||
(define-public cfitsio
|
||||
|
@ -78,3 +80,27 @@ (define-public wcslib
|
|||
keywords and usage that provide for the description of astronomical coordinate
|
||||
systems in a FITS image header.")
|
||||
(license license:lgpl3+)))
|
||||
|
||||
(define-public gnuastro
|
||||
(package
|
||||
(name "gnuastro")
|
||||
(version "0.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://gnu/gnuastro/gnuastro-"
|
||||
version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"105s007kw8l3jwwhvh8k9lgbpfbf7sqh2wpxmvpv3qdr6nh9lnjg"))))
|
||||
(inputs
|
||||
`(("cfitsio" ,cfitsio)
|
||||
("gsl" ,gsl)
|
||||
("libjpeg" ,libjpeg-8)
|
||||
("wcslib" ,wcslib)))
|
||||
(build-system gnu-build-system)
|
||||
(home-page "http://www.gnu.org/software/gnuastro")
|
||||
(synopsis "Astronomical data manipulation programs")
|
||||
(description "The GNU Astronomy Utilities (Gnuastro) is a suite of
|
||||
programs for the manipulation and analysis of astronomical data.")
|
||||
(license license:gpl3+)))
|
||||
|
|
Loading…
Reference in a new issue