diff options
| author | dan <i@dan.games> | 2025-10-22 12:10:32 +0800 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-11-22 15:38:13 +0000 |
| commit | a6f45721816ba7f545dd2252240a41eefd895dd2 (patch) | |
| tree | e700e868dc746f3415a9221c65926b2c3d163bf4 /gnu | |
| parent | eb75cdedcde4ca3298aff480c75ca083b78fa9ee (diff) | |
gnu: Add go-github-com-sj14-astral.
* gnu/packages/golang-xyz.scm (go-github-com-sj14-astral): New variable.
Change-Id: I7593ae6924be775eb16ff84199dc609197429448
Reviewed-by: Sergey Trofimov <sarg@sarg.org.ru>
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/golang-xyz.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 5dda0dc4996..e350c23b468 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -20077,6 +20077,31 @@ names.") compatible with the standard library logger.") (license license:expat))) +(define-public go-github-com-sj14-astral + (package + (name "go-github-com-sj14-astral") + (version "0.2.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sj14/astral") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1zwykcmlg48jqc37n0z0i5w7njsh3rp727bk75ylm9b5f96nv2sp")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/sj14/astral" + #:skip-build? #t)) + (propagated-inputs (list go-github-com-logrusorgru-aurora-v4)) + (home-page "https://github.com/sj14/astral") + (synopsis "Calculations for the position of the sun and moon") + (description "Calculations for the position of the sun and moon. This is a Go port of the +@code{python-astral} package.") + (license license:asl2.0))) + (define-public go-github-com-skip2-go-qrcode (package (name "go-github-com-skip2-go-qrcode") |
