diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-12-15 13:32:36 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-01-21 23:41:59 +0000 |
commit | 438925126b3143463e5bf4262c9a6f80e6ba07e6 (patch) | |
tree | b203124ce461c801c74216f469e4cf152a801274 | |
parent | 46aa241c03822f3a50b68fd0bf5bc6074dfbcda1 (diff) |
gnu: go-github-com-google-gofuzz: Fix indentation.
* gnu/packages/golang-check.scm (go-github-com-google-gofuzz): Fix
indentation.
Change-Id: I2bc2d39600bef6f22e8216d8f7fc53bef47c1d5e
-rw-r--r-- | gnu/packages/golang-check.scm | 43 |
1 files changed, 22 insertions, 21 deletions
diff --git a/gnu/packages/golang-check.scm b/gnu/packages/golang-check.scm index 5820934266..c21ced31de 100644 --- a/gnu/packages/golang-check.scm +++ b/gnu/packages/golang-check.scm @@ -523,27 +523,28 @@ package, but can be used in other contexts too.") (license license:bsd-3))) (define-public go-github-com-google-gofuzz - (package - (name "go-github-com-google-gofuzz") - (version "1.2.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/gofuzz") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "19bykk6y9d1ivylxchkx1r1d02xrh3wfvvd02zvr5qv5ippv78ag")))) - (build-system go-build-system) - (arguments - '(#:import-path "github.com/google/gofuzz")) - (home-page "https://github.com/google/gofuzz") - (synopsis "Fuzz testing library for Go") - (description "Gofuzz is a library for populationg Go objects with random -values for the purpose of fuzz testing.") - (license license:asl2.0))) + (package + (name "go-github-com-google-gofuzz") + (version "1.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/gofuzz") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19bykk6y9d1ivylxchkx1r1d02xrh3wfvvd02zvr5qv5ippv78ag")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/google/gofuzz")) + (home-page "https://github.com/google/gofuzz") + (synopsis "Fuzz testing library for Go") + (description + "Gofuzz is a library for populationg Go objects with random values for +the purpose of fuzz testing.") + (license license:asl2.0))) ;; XXX: Placing to (gnu package profiling) creates some failing cycles. (define-public go-github-com-google-pprof |