diff options
author | Nicolas Graves <ngraves@ngraves.fr> | 2024-01-27 19:21:29 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-01-31 21:20:17 +0000 |
commit | b3e74eb26deb7e455bb92d4fabf72fddc58ba816 (patch) | |
tree | 13d24ed3481409886047b90c67db2cea483bc6bb /gnu | |
parent | d6410c5c47011f53e3bf0cc3218201720bd81f22 (diff) | |
download | guix-b3e74eb26deb7e455bb92d4fabf72fddc58ba816.tar.gz |
gnu: Add go-structlayout.
* gnu/packages/golang-check.scm (go-structlayout): New variable. Change-Id: I7440cdf75238fc73451cefc73b3ce3eb3d4da323 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/golang-check.scm | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/gnu/packages/golang-check.scm b/gnu/packages/golang-check.scm index 262048a235..fb5d002b9b 100644 --- a/gnu/packages/golang-check.scm +++ b/gnu/packages/golang-check.scm @@ -111,6 +111,20 @@ simplifications, and enforces style rules.") Using static analysis, it finds bugs and performance issues, offers simplifications, and enforces style rules."))) +(define-public go-structlayout + (package + (inherit go-honnef-co-go-tools) + (name "go-structlayout") + (arguments + `(#:import-path "honnef.co/go/tools/cmd/structlayout" + #:unpack-path "honnef.co/go/tools" + #:install-source? #f)) + (synopsis "Display the layout (field sizes and padding) of structs in Go") + (description "This package prints the layout of a struct in Go, which is +the byte offset and size of each field, respecting padding. This information +is printed in human-readable form by default, or as JSON with the @code{-json} +flag."))) + (define-public go-github-com-alecthomas-assert (let ((commit "405dbfeb8e38effee6e723317226e93fff912d06") (revision "1")) |