summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo Buddelmeijer <hugo@buddelmeijer.nl>2026-03-12 08:29:29 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-03-13 12:26:17 +0000
commit2c43dcf299b4d27a8e330deff7cc1a9421f825c7 (patch)
treec529b4aa7f33104ef70552bb20748511d8c7399d
parenta2cfd460817c61995f1b7fb4ca561d4844879d42 (diff)
gnu: stiff: Move to (gnu packages astronomy).
* gnu/packages/image-processing.scm (stiff): Move from here... * gnu/packages/astronomy.scm: ...to here. Change-Id: I6122cad526dbe0ef70cb489427ba2ef7cec344bb Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
-rw-r--r--gnu/packages/astronomy.scm27
-rw-r--r--gnu/packages/image-processing.scm27
2 files changed, 27 insertions, 27 deletions
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm
index c8ccce936b5..b57f4a79b68 100644
--- a/gnu/packages/astronomy.scm
+++ b/gnu/packages/astronomy.scm
@@ -11791,6 +11791,33 @@ can be used to control telescopes over a serial port for tracking celestial
objects.")
(license license:gpl2+)))
+(define-public stiff
+ (package
+ (name "stiff")
+ (version "2.4.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/astromatic/stiff")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1iffrncag1w6nd9c6v3dlx9m79nfg6ph42i0gsvlq8pvjph7s6pa"))))
+ (build-system gnu-build-system)
+ (arguments
+ (list #:configure-flags
+ #~(list "CFLAGS=-fcommon")))
+ (inputs
+ (list libtiff zlib libjpeg-turbo))
+ (home-page "https://www.astromatic.net/software/stiff/")
+ (synopsis "Convert scientific FITS images to TIFF format")
+ (description
+ "STIFF is a program that converts scientific @acronym{FITS, Flexible Image
+Transport System} images to the more popular TIFF format for illustration
+purposes.")
+ (license license:gpl3+)))
+
(define-public stuff
;; XXX: No version tag available in GitHub.
;; See: https://github.com/astromatic/stuff/issues/6
diff --git a/gnu/packages/image-processing.scm b/gnu/packages/image-processing.scm
index 33b559d9b67..df1a6f9ac0d 100644
--- a/gnu/packages/image-processing.scm
+++ b/gnu/packages/image-processing.scm
@@ -2003,33 +2003,6 @@ bindings for interpreted languages. This package includes the C++,
Python and R interfaces.")
(license license:asl2.0)))
-(define-public stiff
- (package
- (name "stiff")
- (version "2.4.0")
- (source
- (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/astromatic/stiff")
- (commit version)))
- (file-name (git-file-name name version))
- (sha256
- (base32 "1iffrncag1w6nd9c6v3dlx9m79nfg6ph42i0gsvlq8pvjph7s6pa"))))
- (build-system gnu-build-system)
- (arguments
- (list #:configure-flags
- #~(list "CFLAGS=-fcommon")))
- (inputs
- (list libtiff zlib libjpeg-turbo))
- (home-page "https://www.astromatic.net/software/stiff/")
- (synopsis "Convert scientific FITS images to TIFF format")
- (description
- "STIFF is a program that converts scientific @acronym{FITS, Flexible Image
-Transport System} images to the more popular TIFF format for illustration
-purposes.")
- (license license:gpl3+)))
-
(define-public python-imgviz
(package
(name "python-imgviz")