mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: go-github-com-golangplus-fmt: Move to golang-check.
* gnu/packages/golang.scm (go-github-com-golangplus-fmt): Move from here ... * gnu/packages/golang-check.scm: ... to here. Change-Id: If236c036b3922d82d88fd745bf81c94f9d4d2bc5
This commit is contained in:
parent
7b287dd8ad
commit
60e1d11154
2 changed files with 24 additions and 21 deletions
|
@ -666,6 +666,30 @@ programming language}. It integrates well with Go's built-in @code{testing}
|
|||
package, but can be used in other contexts too.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public go-github-com-golangplus-fmt
|
||||
(package
|
||||
(name "go-github-com-golangplus-fmt")
|
||||
(version "1.0.0")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/golangplus/fmt")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "07d5kxz0f8ss3v46y0c8jg02sagi0wlaaijhjzzp0r462jyzqii7"))))
|
||||
(build-system go-build-system)
|
||||
(arguments
|
||||
(list
|
||||
#:tests? #f ; failing with new Golang compiler.
|
||||
#:import-path "github.com/golangplus/fmt"))
|
||||
(home-page "https://github.com/golangplus/fmt")
|
||||
(synopsis "Additions to Go's standard @code{fmt} package")
|
||||
(description
|
||||
"This package provides additions to Go's stdlib @code{fmt}.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public go-github-com-golangplus-testing
|
||||
(package
|
||||
(name "go-github-com-golangplus-testing")
|
||||
|
|
|
@ -1783,27 +1783,6 @@ running with its management port enabled.")
|
|||
your Go binary to be later served from an http.FileSystem.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public go-github-com-golangplus-fmt
|
||||
(package
|
||||
(name "go-github-com-golangplus-fmt")
|
||||
(version "1.0.0")
|
||||
(home-page "https://github.com/golangplus/fmt")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url home-page)
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "07d5kxz0f8ss3v46y0c8jg02sagi0wlaaijhjzzp0r462jyzqii7"))))
|
||||
(build-system go-build-system)
|
||||
(arguments
|
||||
'(#:tests? #f ; failing with new Golang compiler.
|
||||
#:import-path "github.com/golangplus/fmt"))
|
||||
(synopsis "Additions to Go's standard @code{fmt} package")
|
||||
(description "This package provides additions to Go's stdlib @code{fmt}.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public go-gopkg.in-tomb.v2
|
||||
(let ((commit "d5d1b5820637886def9eef33e03a27a9f166942c")
|
||||
(revision "0"))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue