1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-13 10:30:43 +02:00

gnu: go-github-com-operatorfoundation-shapeshifter-ipc: Move to golang-crytpo.

* gnu/packages/golang.scm (go-github-com-operatorfoundation-shapeshifter-ipc):
Move from here ...
* gnu/packages/golang-crypto.scm: ... to here.

Change-Id: I4a41a0f49845af734a91333ab45fc8295411589e
This commit is contained in:
Sharlatan Hellseher 2025-02-22 08:42:06 +00:00
parent b693b01112
commit 1b6f357afe
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5
2 changed files with 26 additions and 26 deletions

View file

@ -1954,6 +1954,32 @@ obfuscated via the Elligator 2 mapping.
@end itemize") @end itemize")
(license license:bsd-2))) (license license:bsd-2)))
(define-public go-github-com-operatorfoundation-shapeshifter-ipc
(package
(name "go-github-com-operatorfoundation-shapeshifter-ipc")
(version "2.0.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/OperatorFoundation/shapeshifter-ipc")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1q1fcnllg462nfca16s5mr0n2jh92x3hj946qnaqc682phjz04lg"))))
(build-system go-build-system)
(arguments
(list
#:skip-build? #t
#:tests? #f ; all tests fail with error: undefined: Args.
#:import-path "github.com/OperatorFoundation/shapeshifter-ipc"))
(home-page "https://github.com/OperatorFoundation/shapeshifter-ipc")
(synopsis "Go implementation of the Pluggable Transports IPC protocol")
(description
"Shapeshifter-IPC is a library for Go implementing the IPC
protocol from the Pluggable Transports 2.0 specification.")
(license license:expat)))
(define-public go-github-com-pion-randutil (define-public go-github-com-pion-randutil
(package (package
(name "go-github-com-pion-randutil") (name "go-github-com-pion-randutil")

View file

@ -1208,32 +1208,6 @@ form that bypasses network filtering, allowing the application to work on
networks where it would otherwise be blocked or heavily throttled.") networks where it would otherwise be blocked or heavily throttled.")
(license license:expat))) (license license:expat)))
(define-public go-github-com-operatorfoundation-shapeshifter-ipc
(package
(name "go-github-com-operatorfoundation-shapeshifter-ipc")
(version "2.0.0")
(source
(origin
(method git-fetch)
(uri
(git-reference
(url "https://github.com/OperatorFoundation/shapeshifter-ipc")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1q1fcnllg462nfca16s5mr0n2jh92x3hj946qnaqc682phjz04lg"))))
(build-system go-build-system)
(arguments
(list
#:skip-build? #t
#:tests? #f ; all tests fail with error: undefined: Args.
#:import-path "github.com/OperatorFoundation/shapeshifter-ipc"))
(home-page "https://github.com/OperatorFoundation/shapeshifter-ipc")
(synopsis "Go implementation of the Pluggable Transports IPC protocol")
(description "Shapeshifter-IPC is a library for Go implementing the IPC
protocol from the Pluggable Transports 2.0 specification.")
(license license:expat)))
(define-public go-github-com-willscott-goturn (define-public go-github-com-willscott-goturn
(package (package
(name "go-github-com-willscott-goturn") (name "go-github-com-willscott-goturn")