diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-12-19 16:32:09 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-01-21 23:42:08 +0000 |
commit | 4e654723da09d41af2294e33d65d229d03f6c759 (patch) | |
tree | 59b81df5e190c3d03858317bc29429db4301cd68 | |
parent | b715b3d2718672a8ad6b28e0b08dd1fb9b5107b4 (diff) |
gnu: go-github-com-jacobsa-oglemock: Fix indentation.
* gnu/packages/golang-check.scm (go-github-com-jacobsa-oglemock): Fix
indentation.
Change-Id: I9ac2f9af4c3c266b0a4be4f67edd422123731945
-rw-r--r-- | gnu/packages/golang-check.scm | 52 |
1 files changed, 26 insertions, 26 deletions
diff --git a/gnu/packages/golang-check.scm b/gnu/packages/golang-check.scm index 852ec5d6c9..e4c868b1a4 100644 --- a/gnu/packages/golang-check.scm +++ b/gnu/packages/golang-check.scm @@ -743,32 +743,32 @@ Google Test for C++ and Google JS Test.") (license license:asl2.0))) (define-public go-github-com-jacobsa-oglemock - (package - (name "go-github-com-jacobsa-oglemock") - (version "0.0.0-20150831005832-e94d794d06ff") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/jacobsa/oglemock") - (commit (go-version->git-ref version)))) - (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))) + (package + (name "go-github-com-jacobsa-oglemock") + (version "0.0.0-20150831005832-e94d794d06ff") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jacobsa/oglemock") + (commit (go-version->git-ref version)))) + (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-jacobsa-ogletest (package |