summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-09-09 15:00:36 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-09-01 23:32:53 +0100
commitd505447df5bb835eba1f62ceb0ded83db43130aa (patch)
tree117ec250e35804d7cc401f0480d6343e3a4f5fea /gnu
parenta2c7826a8e20888c01fe56c3aeb79c4e45a0a339 (diff)
gnu: Add go-github-com-techarohq-thoth-proto.
* gnu/packages/golang-web.scm (go-github-com-techarohq-thoth-proto): New variable. Relates-to: guix/guix!2572
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/golang-web.scm30
1 files changed, 30 insertions, 0 deletions
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index 3bb686f073f..d31d7a05663 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -20624,6 +20624,36 @@ an interface to implement any other minifier.")
20624 "This package contains several lexers and parsers written in Go.") 20624 "This package contains several lexers and parsers written in Go.")
20625 (license license:expat))) 20625 (license license:expat)))
20626 20626
20627(define-public go-github-com-techarohq-thoth-proto
20628 (package
20629 (name "go-github-com-techarohq-thoth-proto")
20630 (version "0.4.0")
20631 (source
20632 (origin
20633 (method git-fetch)
20634 (uri (git-reference
20635 (url "https://github.com/TecharoHQ/thoth-proto")
20636 (commit (string-append "v" version))))
20637 (file-name (git-file-name name version))
20638 (sha256
20639 (base32 "1acwg613q6v8k12wks77749k72xcx110py4jrr5rh0glqy6c64kd"))))
20640 (build-system go-build-system)
20641 (arguments
20642 (list
20643 #:skip-build? #t
20644 #:import-path "github.com/TecharoHQ/thoth-proto"))
20645 (propagated-inputs
20646 (list go-buf-build-gen-go-bufbuild-protovalidate-protocolbuffers-go
20647 go-google-golang-org-protobuf
20648 go-google-golang-org-grpc))
20649 (home-page "https://github.com/TecharoHQ/thoth-proto")
20650 (synopsis "Reputation database for Anubis")
20651 (description
20652 "This package provides Thoth (from Greek: Θώθ) witch feeds information to
20653@url{https://github.com/TecharoHQ/anubis, Anubis} so that it can make better
20654decisions about which traffic is innocuous and which traffic is suspicious.")
20655 (license license:expat)))
20656
20627(define-public go-github-com-tetratelabs-wabin 20657(define-public go-github-com-tetratelabs-wabin
20628 (package 20658 (package
20629 (name "go-github-com-tetratelabs-wabin") 20659 (name "go-github-com-tetratelabs-wabin")