gnu: go-github-com-flynn-noise: Move to (gnu packages golang-crypto).
* gnu/packages/golang.scm (go-github-com-flynn-noise): Move from here ... * gnu/packages/golang-crypto.scm: ... to here. Change-Id: Ie08a20d57424b0ce5fc10ced2a75b29c8aa3fe7d
This commit is contained in:
parent
65a2f158bb
commit
c8640466e6
2 changed files with 26 additions and 27 deletions
|
@ -223,6 +223,32 @@ Cryptography (ECC).")
|
||||||
messages.")
|
messages.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public go-github-com-flynn-noise
|
||||||
|
(package
|
||||||
|
(name "go-github-com-flynn-noise")
|
||||||
|
(version "1.0.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/flynn/noise")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "1j6phxyqx06wcqxjpin696fkp85s76qcp3i2f7fv6q2fb6618f6y"))))
|
||||||
|
(build-system go-build-system)
|
||||||
|
(arguments
|
||||||
|
'(#:import-path "github.com/flynn/noise"))
|
||||||
|
(propagated-inputs
|
||||||
|
(list go-gopkg-in-check-v1 go-golang-org-x-crypto))
|
||||||
|
(home-page "https://github.com/flynn/noise")
|
||||||
|
(synopsis "Go implementation of the Noise protocol framework")
|
||||||
|
(description "@code{noise} implements the Noise protocol framework. Noise
|
||||||
|
is a low-level framework for building crypto protocols. Noise protocols
|
||||||
|
support mutual and optional authentication, identity hiding, forward secrecy,
|
||||||
|
zero round-trip encryption, and other advanced features.")
|
||||||
|
(license license:bsd-3)))
|
||||||
|
|
||||||
(define-public go-github-com-gaukas-godicttls
|
(define-public go-github-com-gaukas-godicttls
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-gaukas-godicttls")
|
(name "go-github-com-gaukas-godicttls")
|
||||||
|
|
|
@ -10412,33 +10412,6 @@ back.")
|
||||||
terminals, as commonly found on Unix systems.")
|
terminals, as commonly found on Unix systems.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
(define-public go-github-com-flynn-noise
|
|
||||||
(package
|
|
||||||
(name "go-github-com-flynn-noise")
|
|
||||||
(version "1.0.0")
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method git-fetch)
|
|
||||||
(uri (git-reference
|
|
||||||
(url "https://github.com/flynn/noise")
|
|
||||||
(commit (string-append "v" version))))
|
|
||||||
(file-name (git-file-name name version))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"1j6phxyqx06wcqxjpin696fkp85s76qcp3i2f7fv6q2fb6618f6y"))))
|
|
||||||
(build-system go-build-system)
|
|
||||||
(arguments
|
|
||||||
'(#:import-path "github.com/flynn/noise"))
|
|
||||||
(propagated-inputs
|
|
||||||
(list go-gopkg-in-check-v1 go-golang-org-x-crypto))
|
|
||||||
(home-page "https://github.com/flynn/noise")
|
|
||||||
(synopsis "Go implementation of the Noise protocol framework")
|
|
||||||
(description "@code{noise} implements the Noise protocol framework. Noise
|
|
||||||
is a low-level framework for building crypto protocols. Noise protocols
|
|
||||||
support mutual and optional authentication, identity hiding, forward secrecy,
|
|
||||||
zero round-trip encryption, and other advanced features.")
|
|
||||||
(license license:bsd-3)))
|
|
||||||
|
|
||||||
(define-public go-github-com-klauspost-compress
|
(define-public go-github-com-klauspost-compress
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-klauspost-compress")
|
(name "go-github-com-klauspost-compress")
|
||||||
|
|
Reference in a new issue