mirror of
git://git.savannah.gnu.org/guix.git
synced 2023-12-14 03:33:07 +01:00
gnu: Add go-github-com-jacobsa-oglemock.
* gnu/packages/golang.scm (go-github-com-jacobsa-oglemock): New variable. Signed-off-by: Leo Famulari <leo@famulari.name>
This commit is contained in:
parent
e7a1ae9bf9
commit
6d9dbdffcb
1 changed files with 29 additions and 0 deletions
|
@ -1245,6 +1245,35 @@ framework. These matchers are inspired by and mostly compatible with Google
|
||||||
Test for C++ and Google JS Test.")
|
Test for C++ and Google JS Test.")
|
||||||
(license license:asl2.0))))
|
(license license:asl2.0))))
|
||||||
|
|
||||||
|
(define-public go-github-com-jacobsa-oglemock
|
||||||
|
(let ((commit "e94d794d06ffc6de42cb19d0dab3c219efdd6dcf")
|
||||||
|
(revision "0"))
|
||||||
|
(package
|
||||||
|
(name "go-github-com-jacobsa-oglemock")
|
||||||
|
(version (git-version "0.0.0" revision commit))
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/jacobsa/oglemock")
|
||||||
|
(commit commit)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"14yxf8ykwdwkcccksl6741xgzcf8qykyi58kp4maxpgscqhdl8rq"))))
|
||||||
|
(build-system go-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:import-path "github.com/jacobsa/oglemock"
|
||||||
|
;; break loop with with go-github-com-jacobsa-ogletest
|
||||||
|
#:tests? #f))
|
||||||
|
(native-inputs (list
|
||||||
|
go-github-com-jacobsa-oglematchers))
|
||||||
|
(home-page "https://github.com/jacobsa/oglemock")
|
||||||
|
(synopsis "Mocking framework for unit tests")
|
||||||
|
(description
|
||||||
|
"Package oglemock provides a mocking framework for unit tests.")
|
||||||
|
(license license:asl2.0))))
|
||||||
|
|
||||||
(define-public go-github-com-kataras-golog
|
(define-public go-github-com-kataras-golog
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-kataras-golog")
|
(name "go-github-com-kataras-golog")
|
||||||
|
|
Loading…
Reference in a new issue