diff options
author | Felix Lechner <felix.lechner@lease-up.com> | 2023-03-05 12:54:50 -0800 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2023-03-28 16:26:09 -0400 |
commit | 6d9dbdffcbe695482bfb30a9e77261ccfa285b6e (patch) | |
tree | d97a7f46cc0561257729a77b0c2d2a98ed2db826 /gnu/packages/golang.scm | |
parent | e7a1ae9bf9a589d74931c5869e85f8dc3ac2c794 (diff) | |
download | guix-6d9dbdffcbe695482bfb30a9e77261ccfa285b6e.tar.gz |
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>
Diffstat (limited to 'gnu/packages/golang.scm')
-rw-r--r-- | gnu/packages/golang.scm | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 2eb3a67fc5..b513b0d5b0 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -1245,6 +1245,35 @@ framework. These matchers are inspired by and mostly compatible with Google Test for C++ and Google JS Test.") (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 (package (name "go-github-com-kataras-golog") |