3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: Add qfits.

* gnu/packages/astronomy.scm (qfits): New variable.

Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
This commit is contained in:
Sharlatan Hellseher 2021-02-13 14:30:01 +00:00 committed by Guillaume Le Vaillant
parent 8fa76b836d
commit c1563fc116
No known key found for this signature in database
GPG key ID: 6BE8208ADF21FE3F

View file

@ -94,6 +94,25 @@ in FITS files.")
(license (license:non-copyleft "file://License.txt"
"See License.txt in the distribution."))))
(define-public qfits
(package
(name "qfits")
(version "6.2.0")
(source
(origin
(method url-fetch)
(uri
(string-append "ftp://ftp.eso.org/pub/qfits/qfits-" version ".tar.gz"))
(sha256
(base32 "0m2b21mim3a7wgfg3ph2w5hv7mdvr03jmmhzipc0wcahijglcw9j"))))
(build-system gnu-build-system)
(home-page "https://www.eso.org/sci/software/eclipse/qfits/")
(synopsis "C library offering access to astronomical FITS files")
(description
"@code{qfits} is a C library giving access to FITS file internals, both
for reading and writing.")
(license license:gpl2+)))
(define-public eye
(package
(name "eye")