mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-28 15:22:18 -05:00
gnu: go-github-com-flynn-archive-go-shlex: Move to golang-xyz.
* gnu/packages/syncthing.scm (go-github-com-flynn-archive-go-shlex): Move from here ... * gnu/packages/golang-xyz.scm: ... to here. Change-Id: If6376b45b4d3809ca8452b89c335ca7532ec2759
This commit is contained in:
parent
88cdba5ccd
commit
856c3e08f7
2 changed files with 28 additions and 24 deletions
|
@ -1380,6 +1380,34 @@ (define-public go-github-com-fatih-color
|
||||||
defined output to the standard output.")
|
defined output to the standard output.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
;; XXX: This repository has been archived by the owner on Nov 9, 2017. It is
|
||||||
|
;; now read-only.
|
||||||
|
(define-public go-github-com-flynn-archive-go-shlex
|
||||||
|
(let ((commit "3f9db97f856818214da2e1057f8ad84803971cff")
|
||||||
|
(revision "0"))
|
||||||
|
(package
|
||||||
|
(name "go-github-com-flynn-archive-go-shlex")
|
||||||
|
(version (git-version "0.0.0" revision commit))
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/flynn-archive/go-shlex")
|
||||||
|
(commit commit)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "1j743lysygkpa2s2gii2xr32j7bxgc15zv4113b0q9jhn676ysia"))))
|
||||||
|
(build-system go-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:import-path "github.com/flynn-archive/go-shlex"))
|
||||||
|
(synopsis "Go lexer")
|
||||||
|
(description
|
||||||
|
"Shlex is a simple lexer for go that supports shell-style
|
||||||
|
quoting, commenting, and escaping.")
|
||||||
|
(home-page "https://github.com/flynn-archive/go-shlex")
|
||||||
|
(license license:asl2.0))))
|
||||||
|
|
||||||
(define-public go-github-com-gabriel-vasile-mimetype
|
(define-public go-github-com-gabriel-vasile-mimetype
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-gabriel-vasile-mimetype")
|
(name "go-github-com-gabriel-vasile-mimetype")
|
||||||
|
|
|
@ -296,27 +296,3 @@ (define-public go-github-com-matttproud-golang-protobuf-extensions-pbutil
|
||||||
message streaming.")
|
message streaming.")
|
||||||
(home-page "https://github.com/matttproud/golang_protobuf_extensions")
|
(home-page "https://github.com/matttproud/golang_protobuf_extensions")
|
||||||
(license asl2.0)))
|
(license asl2.0)))
|
||||||
|
|
||||||
(define-public go-github-com-flynn-archive-go-shlex
|
|
||||||
(let ((commit "3f9db97f856818214da2e1057f8ad84803971cff")
|
|
||||||
(revision "0"))
|
|
||||||
(package
|
|
||||||
(name "go-github-com-flynn-archive-go-shlex")
|
|
||||||
(version (git-version "0.0.0" revision commit))
|
|
||||||
(source (origin
|
|
||||||
(method git-fetch)
|
|
||||||
(uri (git-reference
|
|
||||||
(url "https://github.com/flynn-archive/go-shlex")
|
|
||||||
(commit commit)))
|
|
||||||
(file-name (git-file-name name version))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"1j743lysygkpa2s2gii2xr32j7bxgc15zv4113b0q9jhn676ysia"))))
|
|
||||||
(build-system go-build-system)
|
|
||||||
(arguments
|
|
||||||
'(#:import-path "github.com/flynn-archive/go-shlex"))
|
|
||||||
(synopsis "Go lexer")
|
|
||||||
(description "Shlex is a simple lexer for go that supports shell-style
|
|
||||||
quoting, commenting, and escaping.")
|
|
||||||
(home-page "https://github.com/flynn-archive/go-shlex")
|
|
||||||
(license asl2.0))))
|
|
||||||
|
|
Loading…
Reference in a new issue