diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-03-07 17:11:52 +0000 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2026-03-18 14:07:31 +0100 |
| commit | cd25751bfb6462b77cefed72303e701e97e460da (patch) | |
| tree | d286868c5ceb1336deae1f1dbd751856f3fadfe2 | |
| parent | 91553061a74d9a9096c609ab6823032912f1446c (diff) | |
gnu: Add go-github-com-google-martian-v3.
* gnu/packages/golang-web.scm (go-github-com-google-martian-v3): New variable.
Change-Id: I44fcd00b93fcab0a37de5dee28ca2ba2d2cc3169
| -rw-r--r-- | gnu/packages/golang-web.scm | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm index 2024acda6b8..30e13b76f5c 100644 --- a/gnu/packages/golang-web.scm +++ b/gnu/packages/golang-web.scm @@ -6930,6 +6930,51 @@ parameters.") "This package provides packet processing capabilities for Go.") (license license:bsd-3))) +(define-public go-github-com-google-martian-v3 + (package + (name "go-github-com-google-martian-v3") + (version "3.3.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/martian") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0js95rw72mklxx8dilqdc86a50yhvykyczck4ci3xx6090p3fj2q")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/google/martian/v3" + #:test-flags + #~(list "-vet=off" + "-skip" (string-join + ;; Panic during test and mismatched assertions. + (list "TestEcho" + "TestFileExistsInBothExplictlyMappedPathAndInferredPath" + "TestLargeEcho/Gzip" + "TestLargeEcho/RawData" + "TestModifierFromJSON" + "TestProcessorChaining" + "TestRequestEditor" + "TestRequestOverHTTPS" + "TestStaticModifierExplicitPathMapping" + "TestStaticModifierOnRequest" + "TestStaticModifierSingleRangeRequest") + "|")))) + (propagated-inputs + (list go-github-com-golang-snappy + go-golang-org-x-net + go-google-golang-org-grpc + go-google-golang-org-protobuf)) + (home-page "https://github.com/google/martian") + (synopsis "Library for building custom HTTP/S proxies") + (description + "Package martian provides an HTTP/1.1 proxy with an API for configurable +request and response modifiers.") + (license license:asl2.0))) + (define-public go-github-com-google-nftables (package (name "go-github-com-google-nftables") |
