diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-06-06 23:04:26 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-06-06 23:30:34 +0100 |
commit | 43747274c38f2bb31f4407eedd3b0daed11f741c (patch) | |
tree | 14df2a599498c2481dfeaa5064d5513adafeef23 | |
parent | 6ab4ce108b957e9e2616f77e028e202e5e084e3e (diff) | |
download | guix-43747274c38f2bb31f4407eedd3b0daed11f741c.tar.gz guix-43747274c38f2bb31f4407eedd3b0daed11f741c.zip |
gnu: qfits: Sort alphabetically.
* gnu/packages/astronomy.scm (qfits): Sort alphabetically.
Change-Id: Ie2cae998a99915f5c12fe496f7cfc25c5bd1c57b
-rw-r--r-- | gnu/packages/astronomy.scm | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index 0870e68e9f..a5cd0162ef 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm @@ -917,25 +917,6 @@ zooming windows, star catalog access, cuts, star pick/FWHM, thumbnails, etc.") (prepend python-pyqt))) (synopsis "Qt5 image viewer build based on python-ginga library"))) -(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 erfa (package (name "erfa") @@ -5211,6 +5192,25 @@ using (multivariate) polynomials.") ;; yt/frontends/artio/artio_headers/LICENSE: for C code. license:lgpl3)))) +(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 sunclock (let ((commit "f4106eb0a81f7594726d6b2859efd8fc64cc1225") (revision "1")) |