gnu: Add go-github-com-google-gopacket.
* gnu/packages/golang.scm (go-github-com-google-gopacket): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
d7552c36ce
commit
124ca1e500
1 changed files with 22 additions and 0 deletions
|
@ -7043,6 +7043,28 @@ are semantically equal in Go (for writing tests).")
|
||||||
4122 and DCE 1.1: Authentication and Security Services.")
|
4122 and DCE 1.1: Authentication and Security Services.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
|
(define-public go-github-com-google-gopacket
|
||||||
|
(package
|
||||||
|
(name "go-github-com-google-gopacket")
|
||||||
|
(version "1.1.19")
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/google/gopacket")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"048qwm2n0wrpql4qqgd7jyynn3gk069yvqbxnshlayzmbhf87ls4"))))
|
||||||
|
(build-system go-build-system)
|
||||||
|
(arguments
|
||||||
|
'(#:import-path "github.com/google/gopacket"))
|
||||||
|
(home-page "https://github.com/google/gopacket")
|
||||||
|
(synopsis "Packet processing capabilities library")
|
||||||
|
(description
|
||||||
|
"This package provides packet processing capabilities for Go.")
|
||||||
|
(license license:bsd-3)))
|
||||||
|
|
||||||
(define-public go-github-com-google-goterm
|
(define-public go-github-com-google-goterm
|
||||||
(let ((commit "fc88cf888a3fa99ecc23d1efc1a44284268457d3")
|
(let ((commit "fc88cf888a3fa99ecc23d1efc1a44284268457d3")
|
||||||
(revision "1"))
|
(revision "1"))
|
||||||
|
|
Reference in a new issue