[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#54335] [PATCH v3 07/10] gnu: Add go-github-com-songgao-water.
From: |
Dominic Martinez |
Subject: |
[bug#54335] [PATCH v3 07/10] gnu: Add go-github-com-songgao-water. |
Date: |
Mon, 4 Apr 2022 15:32:05 -0400 |
* gnu/packages/golang.scm (go-github-com-songgao-water): New variable.
---
All the tests here require the ability to interact with TUN/TAP
interfaces. Again, as far as I'm aware that isn't allowed, so tests are
disabled.
gnu/packages/golang.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index e588bbc960..23543a0c2b 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -9930,3 +9930,27 @@ (define-public
go-github-com-nbrownus-go-metrics-prometheus
registry. It just updates the registry, taking care of exporting the metrics
is still your responsibility.")
(license license:asl2.0)))
+
+(define-public go-github-com-songgao-water
+ (package
+ (name "go-github-com-songgao-water")
+ (version "0.0.0-20200317203138-2b4b6d7c09d8")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/songgao/water")
+ (commit (go-version->git-ref version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1k5aildfszp6x66jzar4y36lic8ijkb5020hfaivpvq3bnwdiikl"))))
+ (build-system go-build-system)
+ (arguments '(#:tests? #f ; Tests require network interface access
+ #:import-path "github.com/songgao/water"))
+ (home-page "https://github.com/songgao/water")
+ (synopsis "Simple network tunnel/tap library")
+ (description
+ "@code{go-github-com-songgao-water} is a simple TUN/TAP interface
+library for Go that efficiently works with standard packages like io, bufio,
+etc.. Use waterutil with it to work with TUN/TAP packets/frames.")
+ (license license:bsd-3)))
--
2.34.0
- [bug#54335] [PATCH v3 00/10] gnu: Add nebula., Dominic Martinez, 2022/04/04
- [bug#54335] [PATCH v3 01/10] gnu: Add go-github-com-anmitsu-go-shlex., Dominic Martinez, 2022/04/04
- [bug#54335] [PATCH v3 02/10] gnu: Add go-github-com-armon-go-radix., Dominic Martinez, 2022/04/04
- [bug#54335] [PATCH v3 05/10] gnu: Add go-github-com-miekg-dns., Dominic Martinez, 2022/04/04
- [bug#54335] [PATCH v3 03/10] gnu: Add go-github-com-cyberdelia-go-metrics-graphite., Dominic Martinez, 2022/04/04
- [bug#54335] [PATCH v3 04/10] gnu: Add go-github-com-google-gopacket., Dominic Martinez, 2022/04/04
- [bug#54335] [PATCH v3 06/10] gnu: Add go-github-com-nbrownus-go-metrics-prometheus., Dominic Martinez, 2022/04/04
- [bug#54335] [PATCH v3 08/10] gnu: Add go-google-golang-org-protobuf., Dominic Martinez, 2022/04/04
- [bug#54335] [PATCH v3 09/10] gnu: Add go-github-com-skip2-go-qrcode., Dominic Martinez, 2022/04/04
- [bug#54335] [PATCH v3 07/10] gnu: Add go-github-com-songgao-water.,
Dominic Martinez <=
- [bug#54335] [PATCH v3 10/10] gnu: Add nebula., Dominic Martinez, 2022/04/04