mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 06:46:50 +01:00
gnu: go-github-com-kevinburke-ssh-config: Move to golang-xyz.
* gnu/packages/golang.scm (go-github-com-kevinburke-ssh-config): Move from here ... * gnu/packages/golang-xyz.scm: ... to here. Change-Id: Ie5124c30d672afae2fedbd393874b598fcbaf042
This commit is contained in:
parent
7a03bdac44
commit
ba97dc9e63
2 changed files with 25 additions and 23 deletions
|
@ -7745,6 +7745,31 @@ (define-public go-github-com-kballard-go-shellquote
|
|||
(home-page "https://github.com/kballard/go-shellquote")
|
||||
(license license:expat))))
|
||||
|
||||
(define-public go-github-com-kevinburke-ssh-config
|
||||
(package
|
||||
(name "go-github-com-kevinburke-ssh-config")
|
||||
(version "1.2.0")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/kevinburke/ssh_config")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "0jvv3i0g8ll210xlbxy8ywj09gab0im676rmnywh3wlpdhxdkbjd"))))
|
||||
(arguments
|
||||
(list
|
||||
#:import-path "github.com/kevinburke/ssh_config"))
|
||||
(build-system go-build-system)
|
||||
(home-page "https://github.com/kevinburke/ssh_config/")
|
||||
(synopsis "Parser for @file{ssh_config} files")
|
||||
(description
|
||||
"This is a Go parser for @file{ssh_config} files. Importantly, this
|
||||
parser attempts to preserve comments in a given file, so you can manipulate a
|
||||
@file{ssh_config} file from a program.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public go-github-com-keybase-dbus
|
||||
(package
|
||||
(name "go-github-com-keybase-dbus")
|
||||
|
|
|
@ -3755,29 +3755,6 @@ (define-public go-github-com-jba-templatecheck
|
|||
that might only rarely be reached.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public go-github-com-kevinburke-ssh-config
|
||||
(package
|
||||
(name "go-github-com-kevinburke-ssh-config")
|
||||
(version "1.2.0")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/kevinburke/ssh_config")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"0jvv3i0g8ll210xlbxy8ywj09gab0im676rmnywh3wlpdhxdkbjd"))))
|
||||
(arguments
|
||||
`(#:import-path "github.com/kevinburke/ssh_config"))
|
||||
(build-system go-build-system)
|
||||
(home-page "https://github.com/kevinburke/ssh_config/")
|
||||
(synopsis "Parser for @file{ssh_config} files")
|
||||
(description "This is a Go parser for @file{ssh_config} files.
|
||||
Importantly, this parser attempts to preserve comments in a given file, so you
|
||||
can manipulate a @file{ssh_config} file from a program.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public go-github-com-alcortesm-tgz
|
||||
(let ((commit "9c5fe88206d7765837fed3732a42ef88fc51f1a1")
|
||||
(revision "1"))
|
||||
|
|
Loading…
Reference in a new issue