diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-06-06 23:17:20 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-06-06 23:30:34 +0100 |
commit | 5a28e539049e61b55bb85382d1168a168d38eb43 (patch) | |
tree | 186b0a4c4976179ca357361d690443a104da6e8b /gnu/packages | |
parent | 1de40d1b5ab74a1f263e7c4306ebccd0fef73c1a (diff) | |
download | guix-5a28e539049e61b55bb85382d1168a168d38eb43.tar.gz guix-5a28e539049e61b55bb85382d1168a168d38eb43.zip |
gnu: weightwatcher: Sort alphabetically.
* gnu/packages/astronomy.scm (weightwatcher): Sort alphabetically.
Change-Id: I7da27100d7e2ce01f1888ff1137d86560fe42220
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/astronomy.scm | 52 |
1 files changed, 26 insertions, 26 deletions
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index e5b4f84d4b..ef1b0d010c 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm @@ -1125,32 +1125,6 @@ the image to position on the sky. Auxillary programs search star catalogs and manipulate images.") (license license:gpl2+))) -(define-public weightwatcher - (package - (name "weightwatcher") - (version "1.12") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/astromatic/weightwatcher") - (commit version))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0701z6bdqq32jv7ga3n6jh27q684ni0hbfjm1mak7rh0qqx089gi")))) - (build-system gnu-build-system) - (arguments - (list - #:configure-flags - #~(list "CFLAGS=-fcommon"))) ; fix build with GCC 10 - (home-page "https://www.astromatic.net/software/weightwatcher") - (synopsis "Weight-map/flag-map multiplexer and rasteriser") - (description - "Weightwatcher is a program hat combines weight-maps, flag-maps and -polygon data in order to produce control maps which can directly be used in -astronomical image-processing packages like Drizzle, Swarp or SExtractor.") - (license license:gpl3+))) - (define-public glnemo2 (package (name "glnemo2") @@ -5330,6 +5304,32 @@ an API for performing input and output operations on different kinds of n-body file formats (nemo, Gadget binaries 1 and 2, Gadget hdf5, Ramses).") (license license:cecill)))) +(define-public weightwatcher + (package + (name "weightwatcher") + (version "1.12") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/astromatic/weightwatcher") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0701z6bdqq32jv7ga3n6jh27q684ni0hbfjm1mak7rh0qqx089gi")))) + (build-system gnu-build-system) + (arguments + (list + #:configure-flags + #~(list "CFLAGS=-fcommon"))) ; fix build with GCC 10 + (home-page "https://www.astromatic.net/software/weightwatcher") + (synopsis "Weight-map/flag-map multiplexer and rasteriser") + (description + "Weightwatcher is a program hat combines weight-maps, flag-maps and +polygon data in order to produce control maps which can directly be used in +astronomical image-processing packages like Drizzle, Swarp or SExtractor.") + (license license:gpl3+))) + (define-public xplanet (package (name "xplanet") |