From 44bfabb87ad0110acfabf5c7dd88591cb29eaac0 Mon Sep 17 00:00:00 2001 From: Arthur Rodrigues Date: Wed, 29 Oct 2025 23:56:10 +0000 Subject: [PATCH] gnu: Add go-github-com-racksec-srslog. * gnu/packages/golang-xyz.scm (go-github-com-racksec-srslog): New variable. Change-Id: If042479bb3de6138c600b99afda5d355fdf36497 Signed-off-by: Sharlatan Hellseher --- gnu/packages/golang-xyz.scm | 42 +++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index a736bba67976eb1d84c48f5b60c0fd68695539a2..314dc7e174d6d06109f26f0240cb8a3e5847bc94 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -18381,6 +18381,48 @@ without configuration, but if desired, everything can be customized down to the smallest detail.") (license license:expat))) +;; XXX: This repository was archived by the owner on Mar 18, 2019. It is +;; now read-only. +(define-public go-github-com-racksec-srslog + (package + (name "go-github-com-racksec-srslog") + (version "0.0.0-20180709174129-a4725f04ec91") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/RackSec/srslog") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1fg5nxj8ps62b3yrw5nqskrps1zqhr7sry86fz0zysds81al8pmi")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/RackSec/srslog" + #:test-flags + #~(list "-skip" (string-join + ;; failed to dial: Unix syslog delivery error + (list "TestUnixDialer" + "TestDial" + "TestNew" + "TestNewLogger" + ;; failed to dial: tls: failed to verify + ;; certificate: x509: certificate has expired or + ;; is not yet valid: current time + ;; 2025-10-29T23:15:00Z is after + ;; 2018-12-31T00:00:00Z + "TestTLSDialer" + "TestTLSCertWrite" + "TestTLSPathWrite") + "|")))) + (home-page "https://github.com/RackSec/srslog") + (synopsis "Replacement for Golang's @code{log/syslog} with TLS support") + (description + "This package is a drop-in replacement for the Golang standard library +@code{log/syslog}, but with support for TLS.") + (license license:bsd-3))) + (define-public go-github-com-rakyll-statik (package (name "go-github-com-rakyll-statik")