1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 13:10:33 +02:00

gnu: Add go-github-com-melbahja-goph.

* gnu/packages/golang-crypto.scm (go-github-com-melbahja-goph): New variable.

Change-Id: I719c8ea073def5ee0918804925cd298b8780ca05
This commit is contained in:
Sharlatan Hellseher
2026-02-13 00:24:04 +00:00
committed by Andreas Enge
parent 12e951cc18
commit 91888b8d45

View File

@@ -1973,6 +1973,33 @@ library's internal ChaCha20 package.")
the Go standard library's TLS 1.3 implementation.")
(license license:bsd-3)))
(define-public go-github-com-melbahja-goph
(package
(name "go-github-com-melbahja-goph")
(version "1.4.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/melbahja/goph")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1w6sn6m3bsh60flp0fdbv70c2d1ky12mpj09100qf64w0v1d32k0"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/melbahja/goph"))
(propagated-inputs
(list go-github-com-pkg-errors
go-github-com-pkg-sftp
go-golang-org-x-crypto))
(home-page "https://github.com/melbahja/goph")
(synopsis "Native Golang SSH client")
(description
"This package provide pure Go implementation of SSH client.")
(license license:expat)))
(define-public go-github-com-miekg-pkcs11
(package
(name "go-github-com-miekg-pkcs11")