mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-22 18:49:14 -05:00
gnu: Add go-github-com-golangplus-testing.
* gnu/packages/golang.scm (go-github-com-golangplus-testing): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
0a7d6e87bb
commit
0d8f28e9de
1 changed files with 22 additions and 0 deletions
|
@ -507,6 +507,28 @@ (define-public go-github-com-golangplus-fmt
|
||||||
(description "This package provides additions to Go's stdlib @code{fmt}.")
|
(description "This package provides additions to Go's stdlib @code{fmt}.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
|
(define-public go-github-com-golangplus-testing
|
||||||
|
(package
|
||||||
|
(name "go-github-com-golangplus-testing")
|
||||||
|
(version "1.0.0")
|
||||||
|
(home-page "https://github.com/golangplus/testing")
|
||||||
|
(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 "1a29m4zplf9m14k74lrb55dids2l17vx28sv0g3y3qcv1xygksiv"))))
|
||||||
|
(build-system go-build-system)
|
||||||
|
(arguments
|
||||||
|
'(#:import-path "github.com/golangplus/testing"))
|
||||||
|
(propagated-inputs
|
||||||
|
`(("go-github-com-golangplus-fmt" ,go-github-com-golangplus-fmt)))
|
||||||
|
(synopsis "Additions to Go's standard testing package")
|
||||||
|
(description "This package provides additions to Go's stdlib testing.")
|
||||||
|
(license license:bsd-3)))
|
||||||
|
|
||||||
(define-public go-github-com-leodido-go-urn
|
(define-public go-github-com-leodido-go-urn
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-leodido-go-urn")
|
(name "go-github-com-leodido-go-urn")
|
||||||
|
|
Loading…
Reference in a new issue