1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-14 11:00:36 +02:00

gnu: go-github-com-google-gopacket: Move to golang-web.

* gnu/packages/golang.scm (go-github-com-google-gopacket): Move from
here ...
* gnu/packages/golang-web.scm: ... to here.

Change-Id: Ie56b693ee156c6636fe339fdb733ac344b627fd0
This commit is contained in:
Sharlatan Hellseher 2024-09-13 12:04:24 +01:00
parent d265bffc4f
commit 6a4a746e8b
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5
2 changed files with 22 additions and 22 deletions

View file

@ -2078,6 +2078,28 @@ GitHub API v3.")
parameters.") parameters.")
(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
(list #: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-safehtml (define-public go-github-com-google-safehtml
(package (package
(name "go-github-com-google-safehtml") (name "go-github-com-google-safehtml")

View file

@ -5290,28 +5290,6 @@ a cron spec parser and job runner.")
"This is a fork of another go-libvterm library for use with aerc.") "This is a fork of another go-libvterm library for use with aerc.")
(license license:expat)))) (license license:expat))))
(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 (go-gotest-tools-source version sha256-base32-hash) (define (go-gotest-tools-source version sha256-base32-hash)
(origin (origin
(method git-fetch) (method git-fetch)