diff options
author | Katherine Cox-Buday <cox.katherine.e@gmail.com> | 2023-01-17 18:45:09 -0700 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2023-02-07 00:05:55 +0100 |
commit | 3b223b8e915c437215f8770649eb506af03f839d (patch) | |
tree | aa940b76c51a6fb31499fb46468c0cf0c3d90f3c /gnu/packages | |
parent | 15330b625ae928d6b94b5dc4515fa65e7e192cc1 (diff) | |
download | guix-3b223b8e915c437215f8770649eb506af03f839d.tar guix-3b223b8e915c437215f8770649eb506af03f839d.tar.gz |
gnu: Add go-mvdan-cc-gofumpt.
* gnu/packages/golang.scm (go-mvdan-cc-gofumpt): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net>
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/golang.scm | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 2b16eb786f..4478ade953 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -9980,6 +9980,20 @@ That is, @code{gofumpt} is happy with a subset of the formats that @code{gofmt} is happy with.") (license license:bsd-3))) +(define-public go-mvdan-cc-gofumpt + (package + (inherit gofumpt) + (name "go-mvdan-cc-gofumpt") + (arguments + `(#:import-path "mvdan.cc/gofumpt" + #:tests? #f + #:install-source? #t + #:phases (modify-phases %standard-phases + (delete 'build)))) + (propagated-inputs (package-inputs gofumpt)) + (native-inputs '()) + (inputs '()))) + (define-public unparam (package (name "unparam") |