summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorFoster Hangdaan <foster@hangdaan.email>2026-06-18 12:52:36 -0400
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-06-19 21:25:40 +0100
commit143be2111beffaee789e26819434037f3e9eba8d (patch)
tree23f74937d677b08380f18161948e47efb9c0256a /gnu
parent60c799176f056de33d7682902ff567c248ec8c71 (diff)
gnu: Add go-github-com-deruina-timberjack.
* gnu/packages/golang-xyz.scm (go-github-com-deruina-timberjack): New variable. Merges: guix/guix!9388 Relates-to: guix/guix#9385 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/golang-xyz.scm28
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 75ae8698785..5cbcd1a2b15 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -8714,6 +8714,34 @@ encoding/decoding. It has no dependencies.")
8714 (list 8714 (list
8715 #:import-path "github.com/derekparker/trie/v3")))) 8715 #:import-path "github.com/derekparker/trie/v3"))))
8716 8716
8717(define-public go-github-com-deruina-timberjack
8718 (package
8719 (name "go-github-com-deruina-timberjack")
8720 (version "1.4.5")
8721 (source
8722 (origin
8723 (method git-fetch)
8724 (uri (git-reference
8725 (url "https://github.com/DeRuina/timberjack")
8726 (commit (string-append "v" version))))
8727 (file-name (git-file-name name version))
8728 (sha256
8729 (base32 "1gkfl82vs5qr0fm561rcijpjzasanvwcqaab4ggaijrp07lp7hrl"))))
8730 (build-system go-build-system)
8731 (arguments
8732 (list
8733 #:import-path "github.com/DeRuina/timberjack"))
8734 (native-inputs
8735 (list go-github-com-fortytw2-leaktest))
8736 (propagated-inputs
8737 (list go-github-com-klauspost-compress))
8738 (home-page "https://github.com/DeRuina/timberjack")
8739 (synopsis "Package for writing logs to rolling files")
8740 (description
8741 "Timberjack is a Go log rolling library with support for size-based,
8742time-based, and manual rotation.")
8743 (license license:expat)))
8744
8717(define-public go-github-com-detailyang-go-fallocate 8745(define-public go-github-com-detailyang-go-fallocate
8718 (package 8746 (package
8719 (name "go-github-com-detailyang-go-fallocate") 8747 (name "go-github-com-detailyang-go-fallocate")