diff options
author | Sharlatan Hellseher <[email protected]> | 2024-01-17 21:33:10 +0000 |
---|---|---|
committer | Sharlatan Hellseher <[email protected]> | 2024-01-28 23:21:06 +0000 |
commit | a704c8a005240846c37c8dd49f00a46f0347c592 (patch) | |
tree | fd3fa0b5e874005b9d881bb822a64eba633b2cb6 /gnu/packages/golang-crypto.scm | |
parent | d71c57a9a6dfe6a16655b72f3c9f45c94da06bf0 (diff) |
gnu: go-github-com-xanzy-ssh-agent: Move to (gnu packages golang-crypto).
* gnu/packages/golang.scm (go-github-com-xanzy-ssh-agent): Move from
here ...
* gnu/packages/golang-crypto.scm: ... to here.
Change-Id: I9eff26086b2b5e9e53e9271a64060f18b6197b3c
Diffstat (limited to 'gnu/packages/golang-crypto.scm')
-rw-r--r-- | gnu/packages/golang-crypto.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/golang-crypto.scm b/gnu/packages/golang-crypto.scm index 9ebe8c70a3..9c9e3d26b8 100644 --- a/gnu/packages/golang-crypto.scm +++ b/gnu/packages/golang-crypto.scm @@ -3,10 +3,12 @@ ;;; Copyright © 2019 Ricardo Wurmus <[email protected]> ;;; Copyright © 2019 Vagrant Cascadian <[email protected]> ;;; Copyright © 2019, 2020 Leo Famulari <[email protected]> +;;; Copyright © 2020 Oleg Pykhalov <[email protected]> ;;; Copyright © 2021 Arun Isaac <[email protected]> ;;; Copyright © 2021 Collin J. Doering <[email protected]> ;;; Copyright © 2021 LibreMiami <[email protected]> ;;; Copyright © 2021 Raghav Gururajan <[email protected]> +;;; Copyright © 2021 Vagrant Cascadian <[email protected]> ;;; Copyright © 2022 (unmatched-parenthesis <[email protected]> ;;; Copyright © 2022 Efraim Flashner <[email protected]> ;;; Copyright © 2022, 2023 Nicolas Graves <[email protected]> @@ -799,6 +801,32 @@ wide-block encryption mode developed by Halevi and Rogaway.") tunnel proxy protocol.") (license license:asl2.0))) +(define-public go-github-com-xanzy-ssh-agent + (package + (name "go-github-com-xanzy-ssh-agent") + (version "0.2.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/xanzy/ssh-agent") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1chjlnv5d6svpymxgsr62d992m2xi6jb5lybjc5zn1h3hv1m01av")))) + (build-system go-build-system) + (arguments + `(#:import-path "github.com/xanzy/ssh-agent")) + (native-inputs + (list go-golang-org-x-crypto)) + (home-page "https://github.com/xanzy/ssh-agent/") + (synopsis "Control ssh-agent from Go") + (description "Package agent implements the ssh-agent protocol, and +provides both a client and a server. The client can talk to a standard +ssh-agent that uses UNIX sockets, and one could implement an alternative +ssh-agent process using the sample server.") + (license license:asl2.0))) + (define-public go-gitlab-com-yawning-edwards25519-extra (let ((commit "2149dcafc266f66d2487f45b156f6397f9c4760b") (revision "0")) |