diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-06-19 11:53:05 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-06-30 07:58:33 +0100 |
| commit | d90af456717e22838c07b2fb4c818ec90947a673 (patch) | |
| tree | a8dffba57fca87cc67f105d5b1fd2df665092351 /gnu | |
| parent | cb7dcd256f5c455ddaa337499038bacdaa2c8109 (diff) | |
gnu: Add uranimator.
* gnu/packages/astronomy.scm (uranimator): New variable.
Change-Id: I83af4c938be00b43ee8f2041f0d75291b201029a
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/astronomy.scm | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index c5925292f51..60b517ebcc4 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm @@ -58,6 +58,9 @@ #:use-module (gnu packages gl) #:use-module (gnu packages glib) #:use-module (gnu packages gnome) + #:use-module (gnu packages golang) + #:use-module (gnu packages golang-maths) + #:use-module (gnu packages golang-xyz) #:use-module (gnu packages gps) #:use-module (gnu packages graph) #:use-module (gnu packages graphviz) @@ -115,6 +118,7 @@ #:use-module (guix build-system cmake) #:use-module (guix build-system copy) #:use-module (guix build-system gnu) + #:use-module (guix build-system go) #:use-module (guix build-system meson) #:use-module ((guix build-system python) #:select (pypi-uri)) #:use-module (guix build-system pyproject) @@ -9317,6 +9321,42 @@ 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 uranimator + ;; No release or version tags. + (let ((commit "f50558c6fbcec4a8e749c37f2368c21170d5bb48") + (revision "0")) + (package + (name "uranimator") + (version (git-version "0.0.0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://codeberg.org/astronexus/uranimator.git") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1icb4c3mfm63zqicixpbaks7a96s82d7q8c5j8kdb548rpsrcxqp")))) + (build-system go-build-system) + (arguments + (list + #:go go-1.24 + #:install-source? #f + #:import-path "codeberg.org/astronexus/uranimator")) + (native-inputs + (list go-codeberg-org-astronexus-brahe + go-github-com-jessevdk-go-flags + go-gonum-org-v1-gonum + go-gopkg-in-yaml-v3)) + (home-page "https://codeberg.org/astronexus/uranimator") + (synopsis "Create sets of astro .png files that can be turned into animations") + (description + "@code{uranimator} is a CLI tool that works with your existing +@url{https://codeberg.org/astronexus/uraniborg,(code uraniborg)} install to +create animations. See how the sky evolves over a million years or what +traveling to a star 100 light years away looks like.") + (license license:agpl3)))) + (define-public wcslib (package (name "wcslib") |
