summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-08-18 19:46:19 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-09-01 23:35:37 +0100
commit5a4dbdb7864bce7d4d2e7ea73be20f7232e3fa36 (patch)
tree8c90806b7df12f21c6afded3ca4f9ae2793bc12f /gnu/packages
parenta0de55e3782ad1cbc234c4ce9987d33be6974a96 (diff)
gnu: Add go-github-com-fahedouch-go-logrotate.
* gnu/packages/golang-xyz.scm (go-github-com-fahedouch-go-logrotate): New variable. Relates-to: guix/guix!2572
Diffstat (limited to 'gnu/packages')
-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 fb01d66c052..5af8136e13e 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -11834,6 +11834,34 @@ variables.")
11834Alphanum Algorithm} developed by Dave Koelle in Go.") 11834Alphanum Algorithm} developed by Dave Koelle in Go.")
11835 (license license:bsd-3))) 11835 (license license:bsd-3)))
11836 11836
11837(define-public go-github-com-fahedouch-go-logrotate
11838 (package
11839 (name "go-github-com-fahedouch-go-logrotate")
11840 (version "0.3.0")
11841 (source
11842 (origin
11843 (method git-fetch)
11844 (uri (git-reference
11845 (url "https://github.com/fahedouch/go-logrotate")
11846 (commit (string-append "v" version))))
11847 (file-name (git-file-name name version))
11848 (sha256
11849 (base32 "1kdyvrynkcbqrwilz5qhf57170f81d0sfypgqwg8k1la81dinw5z"))))
11850 (build-system go-build-system)
11851 (arguments
11852 (list
11853 #:import-path "github.com/fahedouch/go-logrotate"))
11854 (propagated-inputs
11855 (list go-github-com-burntsushi-toml
11856 go-github-com-djherbis-times
11857 go-gopkg-in-yaml-v2))
11858 (home-page "https://github.com/fahedouch/go-logrotate")
11859 (synopsis "Logrotate in Go")
11860 (description
11861 "go-logrotate is a Go package for writing logs to rolling files, it is
11862based on @url{https://github.com/natefinch/lumberjack,lumberjack}.")
11863 (license license:asl2.0)))
11864
11837(define-public go-github-com-fatih-camelcase 11865(define-public go-github-com-fatih-camelcase
11838 (package 11866 (package
11839 (name "go-github-com-fatih-camelcase") 11867 (name "go-github-com-fatih-camelcase")