mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
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
This commit is contained in:
parent
d71c57a9a6
commit
a704c8a005
3 changed files with 29 additions and 26 deletions
|
@ -3,10 +3,12 @@
|
||||||
;;; Copyright © 2019 Ricardo Wurmus <rekado@elephly.net>
|
;;; Copyright © 2019 Ricardo Wurmus <rekado@elephly.net>
|
||||||
;;; Copyright © 2019 Vagrant Cascadian <vagrant@debian.org>
|
;;; Copyright © 2019 Vagrant Cascadian <vagrant@debian.org>
|
||||||
;;; Copyright © 2019, 2020 Leo Famulari <leo@famulari.name>
|
;;; Copyright © 2019, 2020 Leo Famulari <leo@famulari.name>
|
||||||
|
;;; Copyright © 2020 Oleg Pykhalov <go.wigust@gmail.com>
|
||||||
;;; Copyright © 2021 Arun Isaac <arunisaac@systemreboot.net>
|
;;; Copyright © 2021 Arun Isaac <arunisaac@systemreboot.net>
|
||||||
;;; Copyright © 2021 Collin J. Doering <collin@rekahsoft.ca>
|
;;; Copyright © 2021 Collin J. Doering <collin@rekahsoft.ca>
|
||||||
;;; Copyright © 2021 LibreMiami <packaging-guix@libremiami.org>
|
;;; Copyright © 2021 LibreMiami <packaging-guix@libremiami.org>
|
||||||
;;; Copyright © 2021 Raghav Gururajan <rg@raghavgururajan.name>
|
;;; Copyright © 2021 Raghav Gururajan <rg@raghavgururajan.name>
|
||||||
|
;;; Copyright © 2021 Vagrant Cascadian <vagrant@debian.org>
|
||||||
;;; Copyright © 2022 (unmatched-parenthesis <paren@disroot.org>
|
;;; Copyright © 2022 (unmatched-parenthesis <paren@disroot.org>
|
||||||
;;; Copyright © 2022 Efraim Flashner <efraim@flashner.co.il>
|
;;; Copyright © 2022 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;; Copyright © 2022, 2023 Nicolas Graves <ngraves@ngraves.fr>
|
;;; Copyright © 2022, 2023 Nicolas Graves <ngraves@ngraves.fr>
|
||||||
|
@ -799,6 +801,32 @@ wide-block encryption mode developed by Halevi and Rogaway.")
|
||||||
tunnel proxy protocol.")
|
tunnel proxy protocol.")
|
||||||
(license license:asl2.0)))
|
(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
|
(define-public go-gitlab-com-yawning-edwards25519-extra
|
||||||
(let ((commit "2149dcafc266f66d2487f45b156f6397f9c4760b")
|
(let ((commit "2149dcafc266f66d2487f45b156f6397f9c4760b")
|
||||||
(revision "0"))
|
(revision "0"))
|
||||||
|
|
|
@ -8901,32 +8901,6 @@ Importantly, this parser attempts to preserve comments in a given file, so you
|
||||||
can manipulate a @file{ssh_config} file from a program.")
|
can manipulate a @file{ssh_config} file from a program.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
(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-github-com-alcortesm-tgz
|
(define-public go-github-com-alcortesm-tgz
|
||||||
(let ((commit "9c5fe88206d7765837fed3732a42ef88fc51f1a1")
|
(let ((commit "9c5fe88206d7765837fed3732a42ef88fc51f1a1")
|
||||||
(revision "1"))
|
(revision "1"))
|
||||||
|
|
|
@ -107,6 +107,7 @@
|
||||||
#:use-module (gnu packages gnupg)
|
#:use-module (gnu packages gnupg)
|
||||||
#:use-module (gnu packages golang)
|
#:use-module (gnu packages golang)
|
||||||
#:use-module (gnu packages golang-check)
|
#:use-module (gnu packages golang-check)
|
||||||
|
#:use-module (gnu packages golang-crypto)
|
||||||
#:use-module (gnu packages golang-web)
|
#:use-module (gnu packages golang-web)
|
||||||
#:use-module (gnu packages groff)
|
#:use-module (gnu packages groff)
|
||||||
#:use-module (gnu packages guile)
|
#:use-module (gnu packages guile)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue