diff options
author | Katherine Cox-Buday <cox.katherine.e@gmail.com> | 2023-01-17 18:44:58 -0700 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2023-02-07 00:05:53 +0100 |
commit | 7938d68b6b2a804b48ab6799eab53630399f9c88 (patch) | |
tree | e71f3e3bcfca28f854315c18226179a4b1c6a96e /gnu | |
parent | cd51d1340cb002ce2660d2d5aefb67c9962ff127 (diff) | |
download | guix-7938d68b6b2a804b48ab6799eab53630399f9c88.tar.gz guix-7938d68b6b2a804b48ab6799eab53630399f9c88.zip |
gnu: Add go-mvdan-cc-xurls.
* gnu/packages/golang.scm (go-mvdan-cc-xurls): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net>
Diffstat (limited to 'gnu')
-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 248c7953f9..55d8794a5b 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -9835,6 +9835,20 @@ atomic access.") be used as both a binary and a library.") (license license:bsd-3))) +(define-public go-mvdan-cc-xurls + (package + (inherit xurls) + (name "go-mvdan-cc-xurls") + (arguments + `(#:import-path "mvdan.cc/xurls" + #:tests? #f + #:install-source? #t + #:phases (modify-phases %standard-phases + (delete 'build)))) + (propagated-inputs (package-inputs xurls)) + (native-inputs '()) + (inputs '()))) + (define-public go-golang-org-x-lint (let ((commit "83fdc39ff7b56453e3793356bcff3070b9b96445") (revision "0")) |