mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add tempo2.
* gnu/packages/astronomy.scm (tempo2): New variable. Change-Id: Ib994ae836b1a40f0c5b1a95d08cc9693a78e9739
This commit is contained in:
parent
54fa3af910
commit
1fe05a5f06
1 changed files with 38 additions and 0 deletions
|
@ -8309,6 +8309,44 @@ mode,ephemerides of pulse phase behavior (in the form of polynomial
|
|||
expansions) are calculated from input timing models.")
|
||||
(license license:gpl2+)))
|
||||
|
||||
(define-public tempo2
|
||||
(package
|
||||
(name "tempo2")
|
||||
(version "2025.02.1")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://bitbucket.org/psrsoft/tempo2")
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "06494q0zff1qj813y70r014ifm60cminhk7lisy4by022mr6wd3k"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
(list
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-after 'unpack 'patch-pathes
|
||||
(lambda _
|
||||
(substitute* (list "bootstrap" "plugin/make_build_settings.sh")
|
||||
(("/bin/bash") (which "bash"))
|
||||
(("/bin/echo") "echo")))))))
|
||||
(native-inputs
|
||||
(list autoconf
|
||||
automake
|
||||
gfortran
|
||||
libtool
|
||||
pkg-config))
|
||||
(home-page "https://bitbucket.org/psrsoft/tempo2")
|
||||
(synopsis "High precision pulsar timing tool")
|
||||
(description
|
||||
"Tempo2 is a pulsar timing package, based on the old FORTRAN TEMPO code
|
||||
to address some shortcomings in that code for high precision pulsar timing.
|
||||
See related paper
|
||||
@url{https://ui.adsabs.harvard.edu/abs/2006MNRAS.369..655H/abstract}.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public unsio
|
||||
;; There is no versioned tag, use the latest commit.
|
||||
(let ((commit "25e52468298e1194c9726ef5dba9d5fbb46870f5")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue