summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo Buddelmeijer <hugo@buddelmeijer.nl>2026-03-10 21:42:54 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-03-13 12:25:50 +0000
commita2cfd460817c61995f1b7fb4ca561d4844879d42 (patch)
tree99a3f7f0d121f6dffaa173d920a17e5bf46e96ab
parent1a3f2eebcb1278b1295533c27f9e669f52b8311d (diff)
gnu: stiff: Fix build by using CFLAGS=-fcommon.
* gnu/packages/image-processing.scm (stiff): Fix build. [source]: Switch to git-fetch. [arguments]<#:configure-flags>: Add CFLAGS=-fcommon. [home-page]: Update redirect. Merges: https://codeberg.org/guix/guix/pulls/7035 Change-Id: I344650f0b4b03a2101c790e483ff9afc54b4065c Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
-rw-r--r--gnu/packages/image-processing.scm15
1 files changed, 10 insertions, 5 deletions
diff --git a/gnu/packages/image-processing.scm b/gnu/packages/image-processing.scm
index 86962a69781..33b559d9b67 100644
--- a/gnu/packages/image-processing.scm
+++ b/gnu/packages/image-processing.scm
@@ -2009,15 +2009,20 @@ Python and R interfaces.")
2009 (version "2.4.0") 2009 (version "2.4.0")
2010 (source 2010 (source
2011 (origin 2011 (origin
2012 (method url-fetch) 2012 (method git-fetch)
2013 (uri (string-append "https://www.astromatic.net/download/stiff/stiff-" 2013 (uri (git-reference
2014 version ".tar.gz")) 2014 (url "https://github.com/astromatic/stiff")
2015 (commit version)))
2016 (file-name (git-file-name name version))
2015 (sha256 2017 (sha256
2016 (base32 "14m92dskzw7bwsr64ha4p0mj3ndv13gwcbfic3qxrs3zq5353s7l")))) 2018 (base32 "1iffrncag1w6nd9c6v3dlx9m79nfg6ph42i0gsvlq8pvjph7s6pa"))))
2017 (build-system gnu-build-system) 2019 (build-system gnu-build-system)
2020 (arguments
2021 (list #:configure-flags
2022 #~(list "CFLAGS=-fcommon")))
2018 (inputs 2023 (inputs
2019 (list libtiff zlib libjpeg-turbo)) 2024 (list libtiff zlib libjpeg-turbo))
2020 (home-page "https://www.astromatic.net/software/stiff") 2025 (home-page "https://www.astromatic.net/software/stiff/")
2021 (synopsis "Convert scientific FITS images to TIFF format") 2026 (synopsis "Convert scientific FITS images to TIFF format")
2022 (description 2027 (description
2023 "STIFF is a program that converts scientific @acronym{FITS, Flexible Image 2028 "STIFF is a program that converts scientific @acronym{FITS, Flexible Image