mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add tenmon.
* gnu/packages/astronomy.scm (tenmon, libxisf-for-tenmon): New variables. Change-Id: I0398fe657aa944883d1160265fe0113a0ae24ab0
This commit is contained in:
parent
23e618b8c0
commit
ccda97f9e2
1 changed files with 93 additions and 0 deletions
|
@ -1742,6 +1742,25 @@ PixInsight}. It implements
|
||||||
1.0 specification}.")
|
1.0 specification}.")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
|
(define-public libxisf-for-tenmon
|
||||||
|
;; This is an exact commit required for tenmon git submodule.
|
||||||
|
(let ((commit "556bb22d2675ee6072c6224fef3da0fb5d93db41")
|
||||||
|
(revision "0"))
|
||||||
|
(hidden-package
|
||||||
|
(package
|
||||||
|
(inherit libxisf)
|
||||||
|
(name "libxisf")
|
||||||
|
(version (git-version "0.2.13" revision commit))
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://gitea.nouspiro.space/nou/libXISF")
|
||||||
|
(commit commit)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "037dijy0ql1mwm8nddwawlf3ms6w30kxdlkrjjprfsss80ssn30k"))))))))
|
||||||
|
|
||||||
(define-public missfits
|
(define-public missfits
|
||||||
(package
|
(package
|
||||||
(name "missfits")
|
(name "missfits")
|
||||||
|
@ -10485,6 +10504,80 @@ See related paper
|
||||||
@url{https://ui.adsabs.harvard.edu/abs/2006MNRAS.369..655H/abstract}.")
|
@url{https://ui.adsabs.harvard.edu/abs/2006MNRAS.369..655H/abstract}.")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
|
(define-public tenmon
|
||||||
|
(package
|
||||||
|
(name "tenmon")
|
||||||
|
(version "20250915")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://gitea.nouspiro.space/nou/tenmon")
|
||||||
|
(commit version)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "0ay95kdsmv4xli25l7khga4ldwy4irrfc15649s3mgqcd5gl3pfw"))))
|
||||||
|
(build-system cmake-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:tests? #f ;no test target
|
||||||
|
#:configure-flags
|
||||||
|
#~(list "-DCMAKE_C_FLAGS=-Wno-error=implicit-function-declaration")
|
||||||
|
#:phases
|
||||||
|
#~(modify-phases %standard-phases
|
||||||
|
;; libxisf is expected to be found as git submodule, link it before
|
||||||
|
;; build.
|
||||||
|
(add-after 'unpack 'link-libxisf
|
||||||
|
(lambda _
|
||||||
|
(rmdir "libXISF")
|
||||||
|
(symlink #+(package-source (this-package-native-input "libxisf"))
|
||||||
|
(string-append (getcwd) "/libXISF")))))))
|
||||||
|
(native-inputs
|
||||||
|
(list git-minimal/pinned
|
||||||
|
libxisf-for-tenmon
|
||||||
|
pkg-config ))
|
||||||
|
(inputs
|
||||||
|
(list cfitsio
|
||||||
|
glu
|
||||||
|
gsl
|
||||||
|
libexif
|
||||||
|
libraw
|
||||||
|
qtbase
|
||||||
|
qtcharts
|
||||||
|
qtdeclarative
|
||||||
|
wcslib
|
||||||
|
zstd
|
||||||
|
(list zstd "lib")))
|
||||||
|
(home-page "https://nouspiro.space/?page_id=206")
|
||||||
|
(synopsis "FITS and XISF image viewer, converter and indexer")
|
||||||
|
(description
|
||||||
|
"FITS/XISF image viewer with multithreaded image loading. It is intended
|
||||||
|
primarily for viewing astro photos and images with support of following
|
||||||
|
formats:
|
||||||
|
|
||||||
|
@itemize
|
||||||
|
@item FITS 8, 16 bit integer and 32 bit float
|
||||||
|
@item XISF 8, 16 bit integer and 32 bit float
|
||||||
|
@item RAW CR2, DNG, NEF
|
||||||
|
@item JPEG, PNG, BMP, GIF, PBM, PGM, PPM and SVG images
|
||||||
|
@end itemize
|
||||||
|
|
||||||
|
Features:
|
||||||
|
@itemize
|
||||||
|
@item using same stretch function as PixInsight
|
||||||
|
@item OpenGL accelerated drawing
|
||||||
|
@item index and search FITS XISF header data
|
||||||
|
@item quick mark images and then copy/move marked files
|
||||||
|
@item convert FITS <-> XISF
|
||||||
|
@item convert FITS/XISF -> JPEG/PNG
|
||||||
|
@item image statistics mean, media, min, max
|
||||||
|
@item support for WCS
|
||||||
|
@item thumbnails
|
||||||
|
@item convert CFA images to colour - debayer
|
||||||
|
@item color space aware
|
||||||
|
@end itemize")
|
||||||
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public unsio
|
(define-public unsio
|
||||||
;; There is no versioned tag, use the latest commit.
|
;; There is no versioned tag, use the latest commit.
|
||||||
(let ((commit "ac48210ec24432ec3ad330c4203e7eb21876a921")
|
(let ((commit "ac48210ec24432ec3ad330c4203e7eb21876a921")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue