mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: gnuastro: Pin cfitsio version.
This change makes sure GNU Astro is keep building after updating CFITSIO to the latest version as mentioned in <https://issues.guix.gnu.org/73399>. * gnu/packages/astronomy.scm (cfitsio-4.4): New variable. (gnuastro) [inputs]: Remove cfitsio; add cfitsio-4.4. Change-Id: Ia7fa2175dd74a66c1912094efcfb71cbbc998f0a
This commit is contained in:
parent
db990cfe40
commit
056be5be26
1 changed files with 16 additions and 1 deletions
|
@ -582,6 +582,21 @@ (define-public cfitsio
|
|||
(license (license:non-copyleft "file://License.txt"
|
||||
"See License.txt in the distribution."))))
|
||||
|
||||
;;; The version is required for gnuastro. It fails on check phase with a
|
||||
;;; newer version.
|
||||
(define-public cfitsio-4.4
|
||||
(package
|
||||
(inherit cfitsio)
|
||||
(version "4.4.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
"https://heasarc.gsfc.nasa.gov/FTP/software/fitsio/c/"
|
||||
"cfitsio-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "098x1l8ijwsjp2ivp3v7pamrmpgwj5xmgb4yppm9w3w044zxr8b6"))))))
|
||||
|
||||
(define-public erfa
|
||||
(package
|
||||
(name "erfa")
|
||||
|
@ -1747,7 +1762,7 @@ (define-public gnuastro
|
|||
(arguments
|
||||
'(#:configure-flags '("--disable-static")))
|
||||
(inputs
|
||||
(list cfitsio
|
||||
(list cfitsio-4.4
|
||||
curl
|
||||
gsl
|
||||
libgit2
|
||||
|
|
Loading…
Reference in a new issue