gnu: emacs-sly: Update to 20200228.
[jackhill/guix/guix.git] / gnu / packages / golang.scm
CommitLineData
7a2941a8 1;;; GNU Guix --- Functional package management for GNU
1009e6e7 2;;; Copyright © 2016, 2017, 2018, 2019 Efraim Flashner <efraim@flashner.co.il>
7a2941a8
MJ
3;;; Copyright © 2016 Matthew Jordan <matthewjordandevops@yandex.com>
4;;; Copyright © 2016 Andy Wingo <wingo@igalia.com>
b9388925 5;;; Copyright © 2016, 2019 Ludovic Courtès <ludo@gnu.org>
c04ef86e 6;;; Copyright © 2016, 2017 Petter <petter@mykolab.ch>
2c0bc073 7;;; Copyright © 2016, 2017, 2018, 2019, 2020 Leo Famulari <leo@famulari.name>
c04ef86e 8;;; Copyright © 2017 Sergei Trofimovich <slyfox@inbox.ru>
eaca9ff0 9;;; Copyright © 2017 Alex Vong <alexvong1995@gmail.com>
247064c3 10;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
c4d2cffa 11;;; Copyright © 2018 Christopher Baines <mail@cbaines.net>
e60352e4 12;;; Copyright © 2018 Tomáš Čech <sleep_walker@gnu.org>
fb50664f 13;;; Copyright © 2018 Pierre-Antoine Rouby <pierre-antoine.rouby@inria.fr>
4715f92e 14;;; Copyright © 2018 Pierre Neidhardt <mail@ambrevar.xyz>
18199da4 15;;; Copyright @ 2018, 2019 Katherine Cox-Buday <cox.katherine.e@gmail.com>
4ddf067f 16;;; Copyright @ 2019 Giovanni Biscuolo <g@xelera.eu>
521d736a 17;;; Copyright @ 2019 Alex Griffin <a@ajgrf.com>
e30bdd49 18;;; Copyright © 2019 Arun Isaac <arunisaac@systemreboot.net>
48f57932 19;;; Copyright © 2020 Jack Hill <jackhill@jackhill.us>
7a2941a8 20;;;
8a610eb6 21;;; This file is part of GNU Guix.
7a2941a8
MJ
22;;;
23;;; GNU Guix is free software; you can redistribute it and/or modify it
24;;; under the terms of the GNU General Public License as published by
25;;; the Free Software Foundation; either version 3 of the License, or (at
26;;; your option) any later version.
27;;;
28;;; GNU Guix is distributed in the hope that it will be useful, but
29;;; WITHOUT ANY WARRANTY; without even the implied warranty of
30;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
31;;; GNU General Public License for more details.
32;;;
33;;; You should have received a copy of the GNU General Public License
34;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
35
36(define-module (gnu packages golang)
37 #:use-module ((guix licenses) #:prefix license:)
38 #:use-module (guix utils)
39 #:use-module (guix download)
d3878e88 40 #:use-module (guix git-download)
7a2941a8
MJ
41 #:use-module (guix packages)
42 #:use-module (guix build-system gnu)
830dc251 43 #:use-module (guix build-system trivial)
d3878e88 44 #:use-module (guix build-system go)
b9388925 45 #:use-module (gnu packages)
7a2941a8
MJ
46 #:use-module (gnu packages admin)
47 #:use-module (gnu packages gcc)
48 #:use-module (gnu packages base)
49 #:use-module (gnu packages perl)
50 #:use-module (gnu packages pkg-config)
51 #:use-module (gnu packages pcre)
e25ddef5 52 #:use-module (gnu packages lua)
53182924 53 #:use-module (gnu packages mp3)
06c2d0e6 54 #:use-module (gnu packages textutils)
8ffc727e 55 #:use-module (gnu packages tls)
7a2941a8 56 #:use-module (ice-9 match)
9c359ff4 57 #:use-module (srfi srfi-1))
7a2941a8
MJ
58
59;; According to https://golang.org/doc/install/gccgo, gccgo-4.8.2 includes a
60;; complete go-1.1.2 implementation, gccgo-4.9 includes a complete go-1.2
61;; implementation, and gccgo-5 a complete implementation of go-1.4. Ultimately
62;; we hope to build go-1.5+ with a bootstrap process using gccgo-5. As of
63;; go-1.5, go cannot be bootstrapped without go-1.4, so we need to use go-1.4 or
64;; gccgo-5. Mips is not officially supported, but it should work if it is
65;; bootstrapped.
66
67(define-public go-1.4
68 (package
69 (name "go")
9bc1de31 70 ;; The C-language bootstrap of Go:
521d736a
AG
71 ;; https://golang.org/doc/install/source#go14
72 (version "1.4-bootstrap-20171003")
7a2941a8
MJ
73 (source (origin
74 (method url-fetch)
75 (uri (string-append "https://storage.googleapis.com/golang/"
521d736a 76 name version ".tar.gz"))
7a2941a8
MJ
77 (sha256
78 (base32
521d736a 79 "0liybk5z00hizsb5ypkbhqcawnwwa6mkwgvjjg4y3jm3ndg5pzzl"))))
7a2941a8
MJ
80 (build-system gnu-build-system)
81 (outputs '("out"
82 "doc"
83 "tests"))
84 (arguments
85 `(#:modules ((ice-9 match)
86 (guix build gnu-build-system)
1d698a8b
ST
87 (guix build utils)
88 (srfi srfi-1))
7a2941a8 89 #:tests? #f ; Tests are run by the all.bash script.
2ab321ca
EF
90 ,@(if (string-prefix? "aarch64-linux" (or (%current-system)
91 (%current-target-system)))
92 '(#:system "armhf-linux")
93 '())
7a2941a8
MJ
94 #:phases
95 (modify-phases %standard-phases
96 (delete 'configure)
97 (add-after 'patch-generated-file-shebangs 'chdir
98 (lambda _
2a49f7ad
TGR
99 (chdir "src")
100 #t))
7a2941a8
MJ
101 (add-before 'build 'prebuild
102 (lambda* (#:key inputs outputs #:allow-other-keys)
103 (let* ((gcclib (string-append (assoc-ref inputs "gcc:lib") "/lib"))
104 (ld (string-append (assoc-ref inputs "libc") "/lib"))
105 (loader (car (find-files ld "^ld-linux.+")))
106 (net-base (assoc-ref inputs "net-base"))
107 (tzdata-path
108 (string-append (assoc-ref inputs "tzdata") "/share/zoneinfo"))
109 (output (assoc-ref outputs "out")))
110
111 ;; Removing net/ tests, which fail when attempting to access
112 ;; network resources not present in the build container.
113 (for-each delete-file
114 '("net/multicast_test.go" "net/parse_test.go"
115 "net/port_test.go"))
116
117 ;; Add libgcc to the RUNPATH.
118 (substitute* "cmd/go/build.go"
119 (("cgoldflags := \\[\\]string\\{\\}")
120 (string-append "cgoldflags := []string{"
121 "\"-rpath=" gcclib "\"}"))
122 (("ldflags := buildLdflags")
123 (string-append
124 "ldflags := buildLdflags\n"
125 "ldflags = append(ldflags, \"-r\")\n"
126 "ldflags = append(ldflags, \"" gcclib "\")\n")))
127
128 (substitute* "os/os_test.go"
129 (("/usr/bin") (getcwd))
130 (("/bin/pwd") (which "pwd")))
131
132 ;; Disable failing tests: these tests attempt to access
133 ;; commands or network resources which are neither available or
134 ;; necessary for the build to succeed.
135 (for-each
136 (match-lambda
137 ((file regex)
138 (substitute* file
139 ((regex all before test_name)
140 (string-append before "Disabled" test_name)))))
141 '(("net/net_test.go" "(.+)(TestShutdownUnix.+)")
142 ("net/dial_test.go" "(.+)(TestDialTimeout.+)")
143 ("os/os_test.go" "(.+)(TestHostname.+)")
144 ("time/format_test.go" "(.+)(TestParseInSydney.+)")
4b0bac4b 145
7a2941a8
MJ
146 ("os/exec/exec_test.go" "(.+)(TestEcho.+)")
147 ("os/exec/exec_test.go" "(.+)(TestCommandRelativeName.+)")
148 ("os/exec/exec_test.go" "(.+)(TestCatStdin.+)")
149 ("os/exec/exec_test.go" "(.+)(TestCatGoodAndBadFile.+)")
150 ("os/exec/exec_test.go" "(.+)(TestExitStatus.+)")
151 ("os/exec/exec_test.go" "(.+)(TestPipes.+)")
152 ("os/exec/exec_test.go" "(.+)(TestStdinClose.+)")
153 ("syscall/syscall_unix_test.go" "(.+)(TestPassFD\\(.+)")
154 ("os/exec/exec_test.go" "(.+)(TestExtraFiles.+)")))
155
156 (substitute* "net/lookup_unix.go"
157 (("/etc/protocols") (string-append net-base "/etc/protocols")))
158 (substitute* "time/zoneinfo_unix.go"
159 (("/usr/share/zoneinfo/") tzdata-path))
160 (substitute* (find-files "cmd" "asm.c")
161 (("/lib/ld-linux.*\\.so\\.[0-9]") loader))
162 #t)))
163
164 (replace 'build
165 (lambda* (#:key inputs outputs #:allow-other-keys)
166 ;; FIXME: Some of the .a files are not bit-reproducible.
167 (let* ((output (assoc-ref outputs "out")))
168 (setenv "CC" (which "gcc"))
169 (setenv "GOOS" "linux")
170 (setenv "GOROOT" (dirname (getcwd)))
171 (setenv "GOROOT_FINAL" output)
521d736a 172 (setenv "GO14TESTS" "1")
2a49f7ad 173 (invoke "sh" "all.bash"))))
7a2941a8
MJ
174
175 (replace 'install
176 (lambda* (#:key outputs inputs #:allow-other-keys)
177 (let* ((output (assoc-ref outputs "out"))
178 (doc_out (assoc-ref outputs "doc"))
179 (bash (string-append (assoc-ref inputs "bash") "bin/bash"))
180 (docs (string-append doc_out "/share/doc/" ,name "-" ,version))
181 (tests (string-append
182 (assoc-ref outputs "tests") "/share/" ,name "-" ,version)))
183 (mkdir-p tests)
184 (copy-recursively "../test" (string-append tests "/test"))
185 (delete-file-recursively "../test")
186 (mkdir-p docs)
187 (copy-recursively "../api" (string-append docs "/api"))
188 (delete-file-recursively "../api")
189 (copy-recursively "../doc" (string-append docs "/doc"))
190 (delete-file-recursively "../doc")
191
192 (for-each (lambda (file)
193 (let ((file (string-append "../" file)))
194 (install-file file docs)
195 (delete-file file)))
196 '("README" "CONTRIBUTORS" "AUTHORS" "PATENTS"
197 "LICENSE" "VERSION" "robots.txt"))
198 (copy-recursively "../" output)
199 #t))))))
200 (inputs
201 `(("tzdata" ,tzdata)
202 ("pcre" ,pcre)
4f615131 203 ("gcc:lib" ,gcc "lib")))
7a2941a8 204 (native-inputs
3f0ec617 205 `(("pkg-config" ,pkg-config)
7a2941a8
MJ
206 ("which" ,which)
207 ("net-base" ,net-base)
208 ("perl" ,perl)))
209
210 (home-page "https://golang.org/")
211 (synopsis "Compiler and libraries for Go, a statically-typed language")
212 (description "Go, also commonly referred to as golang, is an imperative
247064c3
TGR
213programming language designed primarily for systems programming. Go is a
214compiled, statically typed language in the tradition of C and C++, but adds
215garbage collection, various safety features, and concurrent programming features
216in the style of communicating sequential processes (@dfn{CSP}).")
2ab321ca 217 (supported-systems '("x86_64-linux" "i686-linux" "armhf-linux" "aarch64-linux"))
7a2941a8 218 (license license:bsd-3)))
ec91bcb5 219
48f57932 220(define-public go-1.13
18199da4
KCB
221 (package
222 (inherit go-1.4)
223 (name "go")
6ce08655 224 (version "1.13.8")
18199da4
KCB
225 (source
226 (origin
227 (method url-fetch)
228 (uri (string-append "https://storage.googleapis.com/golang/"
229 name version ".src.tar.gz"))
230 (sha256
231 (base32
6ce08655 232 "0d7cxffk72568h46srzswrxd0bsdip7amgkf499wzn6l6d3g0fxi"))))
18199da4
KCB
233 (arguments
234 (substitute-keyword-arguments (package-arguments go-1.4)
235 ((#:phases phases)
236 `(modify-phases ,phases
237 (replace 'prebuild
238 (lambda* (#:key inputs outputs #:allow-other-keys)
239 (let* ((gcclib (string-append (assoc-ref inputs "gcc:lib") "/lib"))
240 (ld (string-append (assoc-ref inputs "libc") "/lib"))
241 (loader (car (find-files ld "^ld-linux.+")))
242 (net-base (assoc-ref inputs "net-base"))
243 (tzdata-path
244 (string-append (assoc-ref inputs "tzdata") "/share/zoneinfo"))
245 (output (assoc-ref outputs "out")))
246
ae71bef5
LC
247 ;; Having the patch in the 'patches' field of <origin> breaks
248 ;; the 'TestServeContent' test due to the fact that
249 ;; timestamps are reset. Thus, apply it from here.
250 (invoke "patch" "-p2" "--force" "-i"
251 (assoc-ref inputs "go-skip-gc-test.patch"))
252
18199da4
KCB
253 ;; A side effect of these test scripts is testing
254 ;; cgo. Attempts at using cgo flags and directives with these
255 ;; scripts as specified here (https://golang.org/cmd/cgo/)
256 ;; have not worked. The tests continue to state that they can
257 ;; not find object files/headers despite being present.
258 (for-each
259 delete-file
260 '("cmd/go/testdata/script/mod_case_cgo.txt"
261 "cmd/go/testdata/script/list_find.txt"
262 "cmd/go/testdata/script/list_compiled_imports.txt"
263 "cmd/go/testdata/script/cgo_syso_issue29253.txt"))
264
265 (substitute* "os/os_test.go"
266 (("/usr/bin") (getcwd))
267 (("/bin/pwd") (which "pwd"))
268 (("/bin/sh") (which "sh")))
269
18199da4
KCB
270 ;; Add libgcc to runpath
271 (substitute* "cmd/link/internal/ld/lib.go"
272 (("!rpath.set") "true"))
273 (substitute* "cmd/go/internal/work/gccgo.go"
274 (("cgoldflags := \\[\\]string\\{\\}")
275 (string-append "cgoldflags := []string{"
276 "\"-rpath=" gcclib "\""
277 "}"))
278 (("\"-lgcc_s\", ")
279 (string-append
280 "\"-Wl,-rpath=" gcclib "\", \"-lgcc_s\", ")))
281 (substitute* "cmd/go/internal/work/gc.go"
282 (("ldflags = setextld\\(ldflags, compiler\\)")
283 (string-append
284 "ldflags = setextld(ldflags, compiler)\n"
285 "ldflags = append(ldflags, \"-r\")\n"
286 "ldflags = append(ldflags, \"" gcclib "\")\n")))
287
288 ;; Disable failing tests: these tests attempt to access
289 ;; commands or network resources which are neither available
290 ;; nor necessary for the build to succeed.
291 (for-each
292 (match-lambda
293 ((file regex)
294 (substitute* file
295 ((regex all before test_name)
296 (string-append before "Disabled" test_name)))))
297 '(("net/net_test.go" "(.+)(TestShutdownUnix.+)")
298 ("net/dial_test.go" "(.+)(TestDialTimeout.+)")
299 ("net/cgo_unix_test.go" "(.+)(TestCgoLookupPort.+)")
300 ("net/cgo_unix_test.go" "(.+)(TestCgoLookupPortWithCancel.+)")
301 ;; 127.0.0.1 doesn't exist
302 ("net/cgo_unix_test.go" "(.+)(TestCgoLookupPTR.+)")
303 ;; 127.0.0.1 doesn't exist
304 ("net/cgo_unix_test.go" "(.+)(TestCgoLookupPTRWithCancel.+)")
305 ;; /etc/services doesn't exist
306 ("net/parse_test.go" "(.+)(TestReadLine.+)")
307 ("os/os_test.go" "(.+)(TestHostname.+)")
308 ;; The user's directory doesn't exist
309 ("os/os_test.go" "(.+)(TestUserHomeDir.+)")
310 ("time/format_test.go" "(.+)(TestParseInSydney.+)")
311 ("time/format_test.go" "(.+)(TestParseInLocation.+)")
312 ("os/exec/exec_test.go" "(.+)(TestEcho.+)")
313 ("os/exec/exec_test.go" "(.+)(TestCommandRelativeName.+)")
ec91bcb5
MJ
314 ("os/exec/exec_test.go" "(.+)(TestCatStdin.+)")
315 ("os/exec/exec_test.go" "(.+)(TestCatGoodAndBadFile.+)")
316 ("os/exec/exec_test.go" "(.+)(TestExitStatus.+)")
317 ("os/exec/exec_test.go" "(.+)(TestPipes.+)")
318 ("os/exec/exec_test.go" "(.+)(TestStdinClose.+)")
319 ("os/exec/exec_test.go" "(.+)(TestIgnorePipeErrorOnSuccess.+)")
320 ("syscall/syscall_unix_test.go" "(.+)(TestPassFD\\(.+)")
321 ("os/exec/exec_test.go" "(.+)(TestExtraFiles/areturn.+)")
322 ("cmd/go/go_test.go" "(.+)(TestCoverageWithCgo.+)")
3f157443 323 ("cmd/go/go_test.go" "(.+)(TestTwoPkgConfigs.+)")
ec91bcb5
MJ
324 ("os/exec/exec_test.go" "(.+)(TestOutputStderrCapture.+)")
325 ("os/exec/exec_test.go" "(.+)(TestExtraFiles.+)")
326 ("os/exec/exec_test.go" "(.+)(TestExtraFilesRace.+)")
327 ("net/lookup_test.go" "(.+)(TestLookupPort.+)")
328 ("syscall/exec_linux_test.go"
17399545 329 "(.+)(TestCloneNEWUSERAndRemapNoRootDisableSetgroups.+)")))
ec91bcb5 330
ec91bcb5
MJ
331 ;; fix shebang for testar script
332 ;; note the target script is generated at build time.
a6169621 333 (substitute* "../misc/cgo/testcarchive/carchive_test.go"
ec91bcb5
MJ
334 (("#!/usr/bin/env") (string-append "#!" (which "env"))))
335
336 (substitute* "net/lookup_unix.go"
337 (("/etc/protocols") (string-append net-base "/etc/protocols")))
338 (substitute* "net/port_unix.go"
339 (("/etc/services") (string-append net-base "/etc/services")))
340 (substitute* "time/zoneinfo_unix.go"
341 (("/usr/share/zoneinfo/") tzdata-path))
c04ef86e
P
342 (substitute* (find-files "cmd" "\\.go")
343 (("/lib(64)?/ld-linux.*\\.so\\.[0-9]") loader))
ec91bcb5
MJ
344 #t)))
345 (add-before 'build 'set-bootstrap-variables
346 (lambda* (#:key outputs inputs #:allow-other-keys)
347 ;; Tell the build system where to find the bootstrap Go.
5a14b913 348 (let ((go (assoc-ref inputs "go")))
ec91bcb5 349 (setenv "GOROOT_BOOTSTRAP" go)
ec91bcb5 350 (setenv "GOGC" "400")
ec91bcb5 351 #t)))
04a95a4f
LF
352 (replace 'build
353 (lambda* (#:key inputs outputs #:allow-other-keys)
354 ;; FIXME: Some of the .a files are not bit-reproducible.
355 (let* ((output (assoc-ref outputs "out")))
356 (setenv "CC" (which "gcc"))
357 (setenv "GOOS" "linux")
358 (setenv "GOROOT" (dirname (getcwd)))
359 (setenv "GOROOT_FINAL" output)
360 (setenv "CGO_ENABLED" "1")
188b88e2 361 (invoke "sh" "all.bash"))))
04a95a4f 362
ec91bcb5
MJ
363 (replace 'install
364 ;; TODO: Most of this could be factorized with Go 1.4.
365 (lambda* (#:key outputs #:allow-other-keys)
366 (let* ((output (assoc-ref outputs "out"))
367 (doc_out (assoc-ref outputs "doc"))
368 (docs (string-append doc_out "/share/doc/" ,name "-" ,version))
369 (src (string-append
370 (assoc-ref outputs "tests") "/share/" ,name "-" ,version)))
5a14b913
LF
371 ;; Prevent installation of the build cache, which contains
372 ;; store references to most of the tools used to build Go and
373 ;; would unnecessarily increase the size of Go's closure if it
374 ;; was installed.
375 (delete-file-recursively "../pkg/obj")
ec91bcb5
MJ
376
377 (mkdir-p src)
378 (copy-recursively "../test" (string-append src "/test"))
379 (delete-file-recursively "../test")
380 (mkdir-p docs)
381 (copy-recursively "../api" (string-append docs "/api"))
382 (delete-file-recursively "../api")
383 (copy-recursively "../doc" (string-append docs "/doc"))
384 (delete-file-recursively "../doc")
385
386 (for-each
387 (lambda (file)
388 (let* ((filein (string-append "../" file))
389 (fileout (string-append docs "/" file)))
390 (copy-file filein fileout)
391 (delete-file filein)))
392 ;; Note the slightly different file names compared to 1.4.
393 '("README.md" "CONTRIBUTORS" "AUTHORS" "PATENTS"
394 "LICENSE" "VERSION" "CONTRIBUTING.md" "robots.txt"))
395
188b88e2
TGR
396 (copy-recursively "../" output)
397 #t)))))))
ec91bcb5
MJ
398 (native-inputs
399 `(("go" ,go-1.4)
ae71bef5 400 ("go-skip-gc-test.patch" ,(search-patch "go-skip-gc-test.patch"))
1009e6e7
EF
401 ,@(match (%current-system)
402 ((or "armhf-linux" "aarch64-linux")
403 `(("gold" ,binutils-gold)))
404 (_ `()))
dda785f6
EF
405 ,@(package-native-inputs go-1.4)))
406 (supported-systems %supported-systems)))
ec91bcb5 407
48f57932 408(define-public go go-1.13)
d3878e88
LF
409
410(define-public go-github-com-alsm-ioprogress
411 (let ((commit "063c3725f436e7fba0c8f588547bee21ffec7ac5")
412 (revision "0"))
413 (package
414 (name "go-github-com-alsm-ioprogress")
415 (version (git-version "0.0.0" revision commit))
416 (source (origin
417 (method git-fetch)
418 (uri (git-reference
419 (url "https://github.com/alsm/ioprogress.git")
420 (commit commit)))
fdbece74 421 (file-name (git-file-name name version))
d3878e88
LF
422 (sha256
423 (base32
424 "10ym5qlq77nynmkxbk767f2hfwyxg2k7hrzph05hvgzv833dhivh"))))
425 (build-system go-build-system)
426 (arguments
427 '(#:import-path "github.com/alsm/ioprogress"))
428 (synopsis "Textual progress bars in Go")
429 (description "@code{ioprogress} is a Go library with implementations of
430@code{io.Reader} and @code{io.Writer} that draws progress bars. The primary use
431case for these are for command-line applications but alternate progress bar
432writers can be supplied for alternate environments.")
433 (home-page "https://github.com/alsm/ioprogress")
434 (license license:expat))))
11b12655
LF
435
436(define-public go-github-com-aki237-nscjar
437 (let ((commit "e2df936ddd6050d30dd90c7214c02b5019c42f06")
438 (revision "0"))
439 (package
440 (name "go-github-com-aki237-nscjar")
441 (version (git-version "0.0.0" revision commit))
442 (source (origin
443 (method git-fetch)
444 (uri (git-reference
445 (url "https://github.com/aki237/nscjar.git")
446 (commit commit)))
82f09c0e 447 (file-name (git-file-name name version))
11b12655
LF
448 (sha256
449 (base32
450 "03y7zzq12qvhsq86lb06sgns8xrkblbn7i7wd886wk3zr5574b96"))))
451 (build-system go-build-system)
452 (arguments
453 '(#:import-path "github.com/aki237/nscjar"))
454 (synopsis "Handle Netscape / Mozilla cookies")
455 (description "@code{nscjar} is a Go library used to parse and output
456Netscape/Mozilla's old-style cookie files. It also implements a simple cookie
457jar struct to manage the cookies added to the cookie jar.")
458 (home-page "https://github.com/aki237/nscjar")
459 (license license:expat))))
12f496ba 460
60a8cbc4
CB
461(define-public go-github.com-jessevdk-go-flags
462 (package
463 (name "go-github.com-jessevdk-go-flags")
464 (version "1.3.0")
465 (source (origin
466 (method git-fetch)
467 (uri (git-reference
468 (url "https://github.com/jessevdk/go-flags")
469 (commit (string-append "v" version))))
470 (file-name (git-file-name name version))
471 (sha256
472 (base32
473 "1jk2k2l10lwrn1r3nxdvbs0yz656830j4khzirw8p4ahs7c5zz36"))))
474 (build-system go-build-system)
475 (arguments
476 '(#:import-path "github.com/jessevdk/go-flags"))
477 (synopsis "Go library for parsing command line arguments")
478 (description
479 "The @code{flags} package provides a command line option parser. The
480functionality is similar to the go builtin @code{flag} package, but
481@code{flags} provides more options and uses reflection to provide a succinct
482way of specifying command line options.")
483 (home-page "https://github.com/jessevdk/go-flags")
484 (license license:bsd-3)))
210c6d95
CB
485
486(define-public go-gopkg.in-tomb.v2
487 (let ((commit "d5d1b5820637886def9eef33e03a27a9f166942c")
488 (revision "0"))
489 (package
490 (name "go-gopkg.in-tomb.v2")
491 (version (string-append "0.0.0-" revision "." (string-take commit 7)))
492 (source (origin
493 (method git-fetch)
494 (uri (git-reference
495 (url "https://github.com/go-tomb/tomb.git")
496 (commit commit)))
497 (file-name (string-append name "-" version ".tar.gz"))
498 (sha256
499 (base32
500 "1sv15sri99szkdz1bkh0ir46w9n8prrwx5hfai13nrhkawfyfy10"))))
501 (build-system go-build-system)
502 (arguments
69a64ecd
CB
503 '(#:import-path "gopkg.in/tomb.v2"
504 #:phases
505 (modify-phases %standard-phases
506 (add-after 'unpack 'patch-source
507 (lambda _
508 ;; Add a missing % to fix the compilation of this test
509 (substitute* "src/gopkg.in/tomb.v2/tomb_test.go"
510 (("t.Fatalf\\(`Killf\\(\"BO%s")
511 "t.Fatalf(`Killf(\"BO%%s"))
512 #t)))))
210c6d95
CB
513 (synopsis "@code{tomb} handles clean goroutine tracking and termination")
514 (description
515 "The @code{tomb} package handles clean goroutine tracking and
516termination.")
517 (home-page "https://gopkg.in/tomb.v2")
518 (license license:bsd-3))))
da6f9d41
CB
519
520(define-public go-github.com-jtolds-gls
521 (package
522 (name "go-github.com-jtolds-gls")
f0736d47 523 (version "4.20")
da6f9d41
CB
524 (source (origin
525 (method git-fetch)
526 (uri (git-reference
527 (url "https://github.com/jtolds/gls")
528 (commit (string-append "v" version))))
529 (file-name (git-file-name name version))
530 (sha256
531 (base32
f0736d47 532 "1k7xd2q2ysv2xsh373qs801v6f359240kx0vrl0ydh7731lngvk6"))))
da6f9d41
CB
533 (build-system go-build-system)
534 (arguments
535 '(#:import-path "github.com/jtolds/gls"))
536 (synopsis "@code{gls} provides Goroutine local storage")
537 (description
538 "The @code{gls} package provides a way to store a retrieve values
539per-goroutine.")
540 (home-page "https://github.com/jtolds/gls")
541 (license license:expat)))
c4d2cffa
CB
542
543(define-public go-github-com-tj-docopt
544 (package
545 (name "go-github-com-tj-docopt")
546 (version "1.0.0")
547 (source (origin
548 (method git-fetch)
549 (uri (git-reference
550 (url "https://github.com/tj/docopt")
551 (commit (string-append "v" version))))
552 (file-name (git-file-name name version))
553 (sha256
554 (base32
555 "06h8hdg1mh3s78zqlr01g4si7k0f0g6pr7fj7lnvfg446hgc7080"))))
556 (build-system go-build-system)
557 (arguments
558 '(#:import-path "github.com/tj/docopt"))
559 (synopsis "Go implementation of docopt")
560 (description
561 "This library allows the user to define a command-line interface from a
5c6b576a 562program's help message rather than specifying it programmatically with
c4d2cffa
CB
563command-line parsers.")
564 (home-page "https://github.com/tj/docopt")
565 (license license:expat)))
ed0c6a76
CB
566
567(define-public go-github-com-hashicorp-hcl
568 (let ((commit "23c074d0eceb2b8a5bfdbb271ab780cde70f05a8")
569 (revision "0"))
570 (package
571 (name "go-github-com-hashicorp-hcl")
572 (version (git-version "0.0.0" revision commit))
573 (source (origin
574 (method git-fetch)
575 (uri (git-reference
576 (url "https://github.com/hashicorp/hcl")
577 (commit commit)))
578 (file-name (git-file-name name version))
579 (sha256
580 (base32
581 "0db4lpqb5m130rmfy3s3gjjf4dxllypmyrzxv6ggqhkmwmc7w4mc"))))
582 (build-system go-build-system)
583 (arguments
584 '(#:tests? #f
585 #:import-path "github.com/hashicorp/hcl"))
586 (synopsis "Go implementation of HashiCorp Configuration Language")
587 (description
588 "This package contains the main implementation of the @acronym{HCL,
589HashiCorp Configuration Language}. HCL is designed to be a language for
590expressing configuration which is easy for both humans and machines to read.")
591 (home-page "https://github.com/hashicorp/hcl")
592 (license license:mpl2.0))))
269d0858 593
33b67efe
LF
594(define-public go-golang-org-x-tools
595 (let ((commit "8b927904ee0dec805c89aaf9172f4459296ed6e8")
596 (revision "0"))
597 (package
598 (name "go-golang-org-x-tools")
599 (version (git-version "0.1.3" revision commit))
600 (source (origin
601 (method git-fetch)
602 (uri (git-reference
603 (url "https://go.googlesource.com/tools")
604 (commit commit)))
605 (file-name (string-append "go.googlesource.com-tools-"
606 version "-checkout"))
607 (sha256
608 (base32
609 "0iinb70xhcjsddgi42ia1n745lx2ibnjdm6m2v666qrk3876vpck"))))
610 (build-system go-build-system)
611 (arguments
612 `(#:import-path "golang.org/x/tools"
613 ;; Source-only package
614 #:tests? #f
615 #:phases
616 (modify-phases %standard-phases
617 ;; Source-only package
618 (delete 'build))))
619 (synopsis "Tools that support the Go programming language")
620 (description "This package provides miscellaneous tools that support the
621Go programming language.")
622 (home-page "https://go.googlesource.com/tools/")
623 (license license:bsd-3))))
5bbf203c
LF
624
625(define-public go-golang-org-x-crypto
cdf409e8
LF
626 (let ((commit "9756ffdc24725223350eb3266ffb92590d28f278")
627 (revision "4"))
5bbf203c
LF
628 (package
629 (name "go-golang-org-x-crypto")
630 (version (git-version "0.0.0" revision commit))
631 (source (origin
632 (method git-fetch)
633 (uri (git-reference
634 (url "https://go.googlesource.com/crypto")
635 (commit commit)))
636 (file-name (string-append "go.googlesource.com-crypto-"
637 version "-checkout"))
638 (sha256
639 (base32
cdf409e8 640 "0q7hxaaq6lp0v8qqzifvysl47z5rfdlrxkh3d29vsl3wyby3dxl8"))))
5bbf203c
LF
641 (build-system go-build-system)
642 (arguments
643 '(#:import-path "golang.org/x/crypto"
644 ;; Source-only package
645 #:tests? #f
646 #:phases
647 (modify-phases %standard-phases
648 ;; Source-only package
649 (delete 'build)
650 (add-before 'reset-gzip-timestamps 'make-gzip-archive-writable
651 (lambda* (#:key outputs #:allow-other-keys)
652 (map (lambda (file)
653 (make-file-writable file))
654 (find-files
655 (string-append (assoc-ref outputs "out")
656 "/src/golang.org/x/crypto/ed25519/testdata")
657 ".*\\.gz$"))
658 #t)))))
659 (propagated-inputs
561d391b 660 `(("go-golang-org-x-sys" ,go-golang-org-x-sys)))
5bbf203c
LF
661 (synopsis "Supplementary cryptographic libraries in Go")
662 (description "This package provides supplementary cryptographic libraries
663for the Go language.")
664 (home-page "https://go.googlesource.com/crypto/")
665 (license license:bsd-3))))
33b67efe 666
561d391b 667(define-public go-golang-org-x-net
7cb90f22
LF
668 (let ((commit "ba9fcec4b297b415637633c5a6e8fa592e4a16c3")
669 (revision "4"))
269d0858 670 (package
561d391b 671 (name "go-golang-org-x-net")
269d0858
LF
672 (version (git-version "0.0.0" revision commit))
673 (source (origin
674 (method git-fetch)
675 (uri (git-reference
676 (url "https://go.googlesource.com/net")
677 (commit commit)))
678 (file-name (git-file-name name version))
679 (sha256
680 (base32
7cb90f22 681 "1hbqvy6r0s5h0dpdqw8fynl3cq0acin3iyqki9xvl5r8h33yb9bx"))))
269d0858
LF
682 (build-system go-build-system)
683 (arguments
561d391b
LF
684 `(#:import-path "golang.org/x/net"
685 ; Source-only package
686 #:tests? #f
687 #:phases
688 (modify-phases %standard-phases
689 (delete 'build))))
690 (synopsis "Go supplemental networking libraries")
691 (description "This package provides supplemental Go networking libraries.")
269d0858
LF
692 (home-page "https://go.googlesource.com/net")
693 (license license:bsd-3))))
694
561d391b 695(define-public go-golang-org-x-sys
9ef07337
LF
696 (let ((commit "749cb33beabd9aa6d3178e3de05bcc914f70b2bf")
697 (revision "5"))
269d0858 698 (package
561d391b 699 (name "go-golang-org-x-sys")
269d0858
LF
700 (version (git-version "0.0.0" revision commit))
701 (source (origin
702 (method git-fetch)
703 (uri (git-reference
704 (url "https://go.googlesource.com/sys")
705 (commit commit)))
706 (file-name (git-file-name name version))
707 (sha256
708 (base32
9ef07337 709 "0dm3257q3rv2kyn5lmqqim2fqg634v6rhrqq4glvbk4wx4l3v337"))))
269d0858
LF
710 (build-system go-build-system)
711 (arguments
561d391b
LF
712 `(#:import-path "golang.org/x/sys"
713 ;; Source-only package
714 #:tests? #f
715 #:phases
716 (modify-phases %standard-phases
717 (delete 'build))))
269d0858 718 (synopsis "Go support for low-level system interaction")
561d391b
LF
719 (description "This package provides supplemental libraries offering Go
720support for low-level interaction with the operating system.")
269d0858
LF
721 (home-page "https://go.googlesource.com/sys")
722 (license license:bsd-3))))
723
561d391b 724(define-public go-golang-org-x-text
4a136536 725 (package
561d391b 726 (name "go-golang-org-x-text")
06c2d0e6
BL
727 (version "0.3.2")
728 (source (origin
729 (method git-fetch)
730 (uri (git-reference
731 (url "https://go.googlesource.com/text")
732 (commit (string-append "v" version))))
733 (file-name (string-append "go.googlesource.com-text-"
734 version "-checkout"))
735 (sha256
736 (base32
737 "0flv9idw0jm5nm8lx25xqanbkqgfiym6619w575p7nrdh0riqwqh"))))
738 (build-system go-build-system)
739 (arguments
561d391b
LF
740 `(#:import-path "golang.org/x/text"
741 ; Source-only package
742 #:tests? #f
743 #:phases
744 (modify-phases %standard-phases
745 (delete 'build))))
746 (synopsis "Supplemental Go text processing libraries")
747 (description "This package provides supplemental Go libraries for text
748 processing.")
06c2d0e6
BL
749 (home-page "https://go.googlesource.com/text")
750 (license license:bsd-3)))
751
561d391b 752(define-public go-golang-org-x-time
720420e3
LF
753 (let ((commit "9d24e82272b4f38b78bc8cff74fa936d31ccd8ef")
754 (revision "2"))
269d0858 755 (package
561d391b 756 (name "go-golang-org-x-time")
269d0858
LF
757 (version (git-version "0.0.0" revision commit))
758 (source (origin
759 (method git-fetch)
760 (uri (git-reference
761 (url "https://go.googlesource.com/time")
762 (commit commit)))
763 (file-name (git-file-name name version))
764 (sha256
765 (base32
720420e3 766 "1f5nkr4vys2vbd8wrwyiq2f5wcaahhpxmia85d1gshcbqjqf8dkb"))))
269d0858
LF
767 (build-system go-build-system)
768 (arguments
561d391b
LF
769 `(#:import-path "golang.org/x/time"
770 ; Source-only package
771 #:tests? #f
772 #:phases
773 (modify-phases %standard-phases
774 (delete 'build))))
775; (propagated-inputs
776; `(("go-golang-org-x-net" ,go-golang-org-x-net)))
777 (synopsis "Supplemental Go time libraries")
778 (description "This package provides supplemental Go libraries related to
779time.")
269d0858
LF
780 (home-page "https://godoc.org/golang.org/x/time/rate")
781 (license license:bsd-3))))
e60352e4 782
fb50664f 783(define-public go-github-com-burntsushi-toml
0e558640
LF
784 (package
785 (name "go-github-com-burntsushi-toml")
786 (version "0.3.1")
787 (source
788 (origin
789 (method git-fetch)
790 (uri (git-reference
791 (url "https://github.com/BurntSushi/toml.git")
792 (commit (string-append "v" version))))
793 (file-name (git-file-name name version))
794 (sha256
795 (base32
796 "1fjdwwfzyzllgiwydknf1pwjvy49qxfsczqx5gz3y0izs7as99j6"))))
797 (build-system go-build-system)
798 (arguments
799 '(#:import-path "github.com/BurntSushi/toml"))
800 (home-page "https://github.com/BurntSushi/toml")
801 (synopsis "Toml parser and encoder for Go")
802 (description "This package is toml parser and encoder for Go. The interface
803is similar to Go's standard library @code{json} and @code{xml} package.")
804 (license license:expat)))
8c5a69aa
PAR
805
806(define-public go-github-com-getsentry-raven-go
8ffc727e 807 (let ((commit "5c24d5110e0e198d9ae16f1f3465366085001d92")
8c5a69aa
PAR
808 (revision "0"))
809 (package
810 (name "go-github-com-getsentry-raven-go")
8ffc727e 811 (version (git-version "0.2.0" revision commit))
8c5a69aa
PAR
812 (source
813 (origin
814 (method git-fetch)
815 (uri (git-reference
816 (url "https://github.com/getsentry/raven-go.git")
817 (commit commit)))
818 (file-name (git-file-name name version))
819 (sha256
820 (base32
8ffc727e 821 "0lvc376sq8r8jhy2v1m6rf1wyld61pvbk0x6j9xpg56ivqy69xs7"))))
8c5a69aa
PAR
822 (build-system go-build-system)
823 (arguments
824 '(#:import-path "github.com/getsentry/raven-go"))
8ffc727e
LF
825 (propagated-inputs
826 `(("go-github-com-certifi-gocertifi" ,go-github-com-certifi-gocertifi)
827 ("go-github-com-pkg-errors" ,go-github-com-pkg-errors)))
828 (home-page "https://github.com/getsentry/raven-go")
8c5a69aa 829 (synopsis "Sentry client in Go")
8ffc727e 830 (description "This package is a Go client API for the Sentry event/error
8c5a69aa
PAR
831logging system.")
832 (license license:bsd-3))))
0972411a
PAR
833
834(define-public go-github-com-hashicorp-go-version
835 (let ((commit
836 "03c5bf6be031b6dd45afec16b1cf94fc8938bc77")
837 (revision "0"))
838 (package
839 (name "go-github-com-hashicorp-go-version")
840 (version (git-version "0.0.0" revision commit))
841 (source
842 (origin
843 (method git-fetch)
844 (uri (git-reference
845 (url "https://github.com/hashicorp/go-version.git")
846 (commit commit)))
847 (file-name (git-file-name name version))
848 (sha256
849 (base32
850 "0sjq57gpfznaqdrbyb2p0bn90g9h661cvr0jrk6ngags4pbw14ik"))))
851 (build-system go-build-system)
852 (arguments
853 '(#:import-path "github.com/hashicorp/go-version"))
854 (home-page
855 "https://github.com/hashicorp/go-version")
856 (synopsis "Go library for parsing and verifying versions and version
857constraints")
858 (description "This package is a library for parsing versions and version
859constraints, and verifying versions against a set of constraints. It can sort
860a collection of versions properly, handles prerelease/beta versions, can
861increment versions.")
862 (license license:mpl2.0))))
c4230cda
PAR
863
864(define-public go-github-com-jpillora-backoff
865 (let ((commit
866 "06c7a16c845dc8e0bf575fafeeca0f5462f5eb4d")
867 (revision "0"))
868 (package
869 (name "go-github-com-jpillora-backoff")
870 (version (git-version "0.0.0" revision commit))
871 (source
872 (origin
873 (method git-fetch)
874 (uri (git-reference
875 (url "https://github.com/jpillora/backoff.git")
876 (commit commit)))
877 (file-name (git-file-name name version))
878 (sha256
879 (base32
880 "0xhvxr7bm47czdc5hy3kl508z3y4j91i2jm7vg774i52zych6k4l"))))
881 (build-system go-build-system)
882 (arguments
883 '(#:import-path "github.com/jpillora/backoff"))
884 (home-page "https://github.com/jpillora/backoff")
885 (synopsis "Simple exponential backoff counter in Go")
886 (description "This package is a simple exponential backoff counter in
887Go.")
888 (license license:expat))))
28380e0e
PAR
889
890(define-public go-github-com-stretchr-testify
891 (let ((commit
892 "b1f989447a57594c728884458a39abf3a73447f7")
893 (revision "0"))
894 (package
895 (name "go-github-com-stretchr-testify")
896 (version (git-version "1.1.4" revision commit))
897 (source
898 (origin
899 (method git-fetch)
900 (uri (git-reference
901 (url "https://github.com/stretchr/testify.git")
902 (commit commit)))
903 (file-name (git-file-name name version))
904 (sha256
905 (base32
906 "0p0gkqzh2p8r5g0rxm885ljl7ghih7h7hx9w562imx5ka0vdgixv"))))
907 (build-system go-build-system)
908 (arguments
909 '(#:import-path "github.com/stretchr/testify"))
910 (home-page "https://github.com/stretchr/testify")
911 (synopsis "Go helper library for tests and invariant checking")
912 (description "This package provide many tools for testifying that your
913code will behave as you intend.
914
915Features include:
916@itemize
917@item Easy assertions
918@item Mocking
919@item HTTP response trapping
920@item Testing suite interfaces and functions.
921@end itemize")
922 (license license:expat))))
21290c35
PAR
923
924(define-public go-github-com-tevino-abool
925 (let ((commit
926 "3c25f2fe7cd0ef3eabefce1d90efd69a65d35b12")
927 (revision "0"))
928 (package
929 (name "go-github-com-tevino-abool")
930 (version (git-version "0.0.0" revision commit))
931 (source
932 (origin
933 (method git-fetch)
934 (uri (git-reference
935 (url "https://github.com/tevino/abool.git")
936 (commit commit)))
937 (file-name (git-file-name name version))
938 (sha256
939 (base32
940 "1wxqrclxk93q0aj15z596dx2y57x9nkhi64nbrr5cxnhxn8vwixm"))))
941 (build-system go-build-system)
942 (arguments
943 '(#:import-path "github.com/tevino/abool"))
944 (home-page "https://github.com/tevino/abool")
945 (synopsis "Atomic boolean library for Go code")
946 (description "This package is atomic boolean library for Go code,
947optimized for performance yet simple to use.")
948 (license license:expat))))
7c2ebbd4 949
67836c59
PAR
950(define-public go-github-com-blang-semver
951 (let ((commit "60ec3488bfea7cca02b021d106d9911120d25fe9")
952 (revision "0"))
953 (package
954 (name "go-github-com-blang-semver")
955 (version (git-version "0.0.0" revision commit))
956 (source
957 (origin
958 (method git-fetch)
959 (uri (git-reference
960 (url "https://github.com/blang/semver.git")
961 (commit commit)))
962 (file-name (git-file-name name version))
963 (sha256
964 (base32
965 "19pli07y5592g4dyjyj0jq5rn548vc3fz0qg3624vm1j5828p1c2"))))
966 (build-system go-build-system)
967 (arguments
968 '(#:import-path "github.com/blang/semver"))
969 (home-page "https://github.com/blang/semver")
970 (synopsis "Semantic versioning library written in Go")
971 (description "Semver is a library for Semantic versioning written in Go.")
972 (license license:expat))))
973
7979f7df
PAR
974(define-public go-github-com-emicklei-go-restful
975 (let ((commit "89ef8af493ab468a45a42bb0d89a06fccdd2fb22")
976 (revision "0"))
977 (package
978 (name "go-github-com-emicklei-go-restful")
979 (version (git-version "0.0.0" revision commit))
980 (source
981 (origin
982 (method git-fetch)
983 (uri (git-reference
984 (url "https://github.com/emicklei/go-restful.git")
985 (commit commit)))
986 (file-name (git-file-name name version))
987 (sha256
988 (base32
989 "0rrlfcfq80fkxifpih6bq31vavb5mf4530xz51pp9pq1mn2fzjfh"))))
990 (build-system go-build-system)
991 (arguments
992 '(#:import-path "github.com/emicklei/go-restful"))
993 (home-page "https://github.com/emicklei/go-restful")
994 (synopsis "Build REST-style web services using Go")
995 (description "This package provides @code{go-restful}, which helps
996developers to use @code{http} methods explicitly and in a way that's consistent
997with the HTTP protocol definition.")
998 (license license:expat))))
73fe19ef
PAR
999
1000(define-public go-github-com-google-cadvisor
1001 (let ((commit "2ed7198f77395ee9a172878a0a7ab92ab59a2cfd")
1002 (revision "0"))
1003 (package
1004 (name "go-github-com-google-cadvisor")
1005 (version (git-version "0.0.0" revision commit))
1006 (source
1007 (origin
1008 (method git-fetch)
1009 (uri (git-reference
1010 (url "https://github.com/google/cadvisor.git")
1011 (commit commit)))
1012 (file-name (git-file-name name version))
1013 (sha256
1014 (base32
1015 "1w8p345z5j0gk3yiq5ah0znd5lfh348p2s624k5r10drz04p3f55"))))
1016 (build-system go-build-system)
1017 (arguments
1018 '(#:import-path "github.com/google/cadvisor"))
1019 (home-page "https://github.com/google/cadvisor")
1020 (synopsis "Analyze resource usage of running containers")
1021 (description "The package provides @code{cadvisor}, which provides
ae03ce0f 1022information about the resource usage and performance characteristics of running
73fe19ef
PAR
1023containers.")
1024 (license license:asl2.0))))
daed2c5e
PAR
1025
1026(define-public go-github-com-google-gofuzz
1027 (let ((commit "fd52762d25a41827db7ef64c43756fd4b9f7e382")
1028 (revision "0"))
1029 (package
1030 (name "go-github-com-google-gofuzz")
1031 (version (git-version "0.0.0" revision commit))
1032 (source
1033 (origin
1034 (method git-fetch)
1035 (uri (git-reference
1036 (url "https://github.com/google/gofuzz.git")
1037 (commit commit)))
1038 (file-name (git-file-name name version))
1039 (sha256
1040 (base32
1041 "1yxmmr73h0lq7ryf3q9a7pcm2x5xrg4d5bxkq8n5pxwxwyq26kw8"))))
1042 (build-system go-build-system)
1043 (arguments
1044 '(#:import-path "github.com/google/gofuzz"))
1045 (home-page "https://github.com/google/gofuzz")
1046 (synopsis "Fuzz testing library for Go")
1047 (description "Gofuzz is a library for populationg Go objects with random
1048values for the purpose of fuzz testing.")
1049 (license license:asl2.0))))
9cf879a5
PAR
1050
1051(define-public go-github-com-gorilla-context
1052 (let ((commit "08b5f424b9271eedf6f9f0ce86cb9396ed337a42")
1053 (revision "0"))
1054 (package
1055 (name "go-github-com-gorilla-context")
1056 (version (git-version "0.0.0" revision commit))
1057 (source
1058 (origin
1059 (method git-fetch)
1060 (uri (git-reference
1061 (url "https://github.com/gorilla/context.git")
1062 (commit commit)))
1063 (file-name (git-file-name name version))
1064 (sha256
1065 (base32
1066 "03p4hn87vcmfih0p9w663qbx9lpsf7i7j3lc7yl7n84la3yz63m4"))))
1067 (build-system go-build-system)
1068 (arguments
1069 '(#:import-path "github.com/gorilla/context"))
1070 (home-page "https://github.com/gorilla/context")
1071 (synopsis "Go registry for request variables")
1072 (description "This package provides @code{gorilla/context}, which is a general purpose registry for global request variables in the Go programming language.")
1073 (license license:bsd-3))))
e8cdf560
PAR
1074
1075(define-public go-github-com-gorilla-mux
1076 (let ((commit "599cba5e7b6137d46ddf58fb1765f5d928e69604")
1077 (revision "0"))
1078 (package
1079 (name "go-github-com-gorilla-mux")
1080 (version (git-version "0.0.0" revision commit))
1081 (source
1082 (origin
1083 (method git-fetch)
1084 (uri (git-reference
1085 (url "https://github.com/gorilla/mux.git")
1086 (commit commit)))
1087 (file-name (git-file-name name version))
1088 (sha256
1089 (base32
1090 "0wd6jjii1kg5s0nk3ri6gqriz6hbd6bbcn6x4jf8n7ncrb8qsxyz"))))
1091 (build-system go-build-system)
1092 (arguments
1093 '(#:import-path "github.com/gorilla/mux"))
1094 (home-page "https://github.com/gorilla/mux")
1095 (synopsis "URL router and dispatcher for Go")
1096 (description
1097 "Gorilla/Mux implements a request router and dispatcher for matching
1098incoming requests with their respective handler.")
1099 (license license:bsd-3))))
bcb21790
PAR
1100
1101(define-public go-github-com-jonboulle-clockwork
1102 (let ((commit "e3653ace2d63753697e0e5b07b9393971c0bba9d")
1103 (revision "0"))
1104 (package
1105 (name "go-github-com-jonboulle-clockwork")
1106 (version (git-version "0.0.0" revision commit))
1107 (source
1108 (origin
1109 (method git-fetch)
1110 (uri (git-reference
1111 (url "https://github.com/jonboulle/clockwork.git")
1112 (commit commit)))
1113 (file-name (git-file-name name version))
1114 (sha256
1115 (base32
1116 "1avzqhks12a8x2yzpvjsf3k0gv9cy7zx2z88hn0scacnxkphisvc"))))
1117 (build-system go-build-system)
1118 (arguments
1119 '(#:import-path "github.com/jonboulle/clockwork"))
1120 (home-page "https://github.com/jonboulle/clockwork")
1121 (synopsis "Fake clock library for Go")
1122 (description
1123 "Replace uses of the @code{time} package with the
1124@code{clockwork.Clock} interface instead.")
1125 (license license:asl2.0))))
76a2b278
PAR
1126
1127(define-public go-github-com-spf13-pflag
28cdd818
DM
1128 (package
1129 (name "go-github-com-spf13-pflag")
1130 (version "1.0.5")
1131 (source
1132 (origin
1133 (method git-fetch)
1134 (uri (git-reference
1135 (url "https://github.com/spf13/pflag.git")
1136 (commit (string-append "v" version))))
1137 (file-name (git-file-name name version))
1138 (sha256
1139 (base32
1140 "0gpmacngd0gpslnbkzi263f5ishigzgh6pbdv9hp092rnjl4nd31"))))
1141 (build-system go-build-system)
1142 (arguments
1143 '(#:import-path "github.com/spf13/pflag"))
1144 (home-page "https://github.com/spf13/pflag")
1145 (synopsis "Replacement for Go's @code{flag} package")
1146 (description
1147 "Pflag is library to replace Go's @code{flag} package. It implements
76a2b278
PAR
1148POSIX/GNU-style command-line options with double hyphens. It is is compatible
1149with the
1150@uref{https://www.gnu.org/software/libc/manual/html_node/Argument-Syntax.html,
1151GNU extensions} to the POSIX recommendations for command-line options.")
28cdd818 1152 (license license:bsd-3)))
7427b2c6
PAR
1153
1154(define-public go-github-com-sirupsen-logrus
1155 (package
1156 (name "go-github-com-sirupsen-logrus")
1157 (version "1.0.5")
1158 (source
1159 (origin
1160 (method git-fetch)
1161 (uri (git-reference
1162 (url "https://github.com/sirupsen/logrus.git")
1163 (commit (string-append "v" version))))
f1d4d79f 1164 (file-name (git-file-name name version))
7427b2c6
PAR
1165 (sha256
1166 (base32
1167 "0g5z7al7kky11ai2dhac6gkp3b5pxsvx72yj3xg4wg3265gbn7yz"))))
1168 (build-system go-build-system)
1169 (native-inputs
561d391b
LF
1170 `(("go-golang-org-x-crypto"
1171 ,go-golang-org-x-crypto)
7427b2c6
PAR
1172 ("go-github-com-stretchr-testify"
1173 ,go-github-com-stretchr-testify)
561d391b 1174 ("go-golang-org-x-sys" ,go-golang-org-x-sys)))
7427b2c6
PAR
1175 (arguments
1176 '(#:tests? #f ;FIXME missing dependencies
1177 #:import-path "github.com/sirupsen/logrus"))
1178 (home-page "https://github.com/sirupsen/logrus")
1179 (synopsis "Structured, pluggable logging for Go")
1180 (description "Logrus is a structured logger for Go, completely API
1181compatible with the standard library logger.")
1182 (license license:expat)))
5cc2b845
LF
1183
1184(define-public go-github-com-kardianos-osext
1185 (let ((commit "ae77be60afb1dcacde03767a8c37337fad28ac14")
1186 (revision "1"))
1187 (package
1188 (name "go-github-com-kardianos-osext")
1189 (version (git-version "0.0.0" revision commit))
1190 (source (origin
1191 (method git-fetch)
1192 (uri (git-reference
1193 (url "https://github.com/kardianos/osext")
1194 (commit commit)))
1195 (file-name (git-file-name name version))
1196 (sha256
1197 (base32
1198 "056dkgxrqjj5r18bnc3knlpgdz5p3yvp12y4y978hnsfhwaqvbjz"))))
1199 (build-system go-build-system)
1200 (arguments
1201 `(#:import-path "github.com/kardianos/osext"
1202 ;; The tests are flaky:
1203 ;; <https://github.com/kardianos/osext/issues/21>
1204 #:tests? #f))
1205 (synopsis "Find the running executable")
1206 (description "Osext provides a method for finding the current executable
1207file that is running. This can be used for upgrading the current executable or
1208finding resources located relative to the executable file.")
1209 (home-page "https://github.com/kardianos/osext")
1210 (license license:bsd-3))))
aed4944d
PAR
1211
1212(define-public go-github-com-ayufan-golang-kardianos-service
1213 (let ((commit "0c8eb6d8fff2e2fb884a7bfd23e183fb63c0eff3")
1214 (revision "0"))
1215 (package
1216 (name "go-github-com-ayufan-golang-kardianos-service")
1217 (version (git-version "0.0.0" revision commit))
1218 (source
1219 (origin
1220 (method git-fetch)
1221 (uri (git-reference
1222 (url
1223 "https://github.com/ayufan/golang-kardianos-service.git")
1224 (commit commit)))
1225 (file-name (git-file-name name version))
1226 (sha256
1227 (base32
1228 "0x0cn7l5gda2khsfypix7adxd5yqighzn04mxjw6hc4ayrh7his5"))))
1229 (build-system go-build-system)
1230 (native-inputs
1231 `(("go-github-com-kardianos-osext"
1232 ,go-github-com-kardianos-osext)))
1233 (arguments
1234 '(#:tests? #f ;FIXME tests fail: Service is not running.
1235 #:import-path "github.com/ayufan/golang-kardianos-service"))
1236 (home-page "https://github.com/ayufan/golang-kardianos-service")
1237 (synopsis "Go interface to a variety of service supervisors")
1238 (description "This package provides @code{service}, a Go module that can
1239run programs as a service using a variety of supervisors, including systemd,
1240SysVinit, and more.")
1241 (license license:zlib))))
e2826118
PAR
1242
1243(define-public go-github-com-docker-distribution
1244 (let ((commit "325b0804fef3a66309d962357aac3c2ce3f4d329")
1245 (revision "0"))
1246 (package
1247 (name "go-github-com-docker-distribution")
1248 (version (git-version "0.0.0" revision commit))
1249 (source
1250 ;; FIXME: This bundles many things, see
1251 ;; <https://debbugs.gnu.org/cgi/bugreport.cgi?bug=31881#41>.
1252 (origin
1253 (method git-fetch)
1254 (uri (git-reference
1255 (url "https://github.com/docker/distribution")
1256 (commit commit)))
1257 (file-name (git-file-name name version))
1258 (sha256
1259 (base32
1260 "1yg2zrikn3vkvkx5mn51p6bfjk840qdkn7ahhhvvcsc8mpigrjc6"))))
1261 (build-system go-build-system)
1262 (native-inputs
561d391b 1263 `(("go-golang-org-x-sys" ,go-golang-org-x-sys)
e2826118
PAR
1264 ("go-github-com-sirupsen-logrus"
1265 ,go-github-com-sirupsen-logrus)
561d391b
LF
1266 ("go-golang-org-x-crypto"
1267 ,go-golang-org-x-crypto)))
e2826118
PAR
1268 (arguments
1269 '(#:import-path "github.com/docker/distribution"
1270 #:phases
1271 (modify-phases %standard-phases
1272 (add-before 'reset-gzip-timestamps 'make-gzip-archive-writable
1273 (lambda* (#:key outputs #:allow-other-keys)
1274 (map (lambda (file)
1275 (make-file-writable file))
1276 (find-files
1277 (assoc-ref outputs "out")
1278 ".*\\.gz$"))
1279 #t)))))
1280 (home-page
1281 "https://github.com/docker/distribution")
a95b6436 1282 (synopsis "This package is a Docker toolset to pack, ship, store, and
e2826118 1283deliver content")
a95b6436
VC
1284 (description "Docker Distribution is a Docker toolset to pack, ship,
1285store, and deliver content. It contains Docker Registry 2.0 and libraries
1286to interact with distribution components.")
e2826118 1287 (license license:asl2.0))))
01bcc94c
PAR
1288
1289(define-public go-github-com-docker-go-connections
1290 (let ((commit "3ede32e2033de7505e6500d6c868c2b9ed9f169d")
1291 (revision "0"))
1292 (package
1293 (name "go-github-com-docker-go-connections")
1294 (version (git-version "0.0.0" revision commit))
1295 (source
1296 (origin
1297 (method git-fetch)
1298 (uri (git-reference
1299 (url "https://github.com/docker/go-connections.git")
1300 (commit commit)))
1301 (file-name (git-file-name name version))
1302 (sha256
1303 (base32
1304 "0v1pkr8apwmhyzbjfriwdrs1ihlk6pw7izm57r24mf9jdmg3fyb0"))))
1305 (build-system go-build-system)
1306 (arguments
1307 '(#:import-path "github.com/docker/go-connections"))
1308 (home-page "https://github.com/docker/go-connections")
1309 (synopsis "Networking library for Go")
1310 (description
f0b32cea 1311 "This package provides a library to work with network connections in
01bcc94c
PAR
1312the Go language. In particular it provides tools to deal with network address
1313translation (NAT), proxies, sockets, and transport layer security (TLS).")
1314 (license license:asl2.0))))
af132bcc
PAR
1315
1316(define-public go-github-com-docker-machine
1317 (let ((commit "7b7a141da84480342357c51838be142bf183b095")
1318 (revision "0"))
1319 (package
1320 (name "go-github-com-docker-machine")
1321 (version (git-version "0.0.0" revision commit))
1322 (source
1323 (origin
1324 (method git-fetch)
1325 (uri (git-reference
1326 (url "https://github.com/docker/machine.git")
1327 (commit commit)))
1328 (file-name (git-file-name name version))
1329 (sha256
1330 (base32
1331 "0bavk0lvs462yh0lnmnxi9psi5qv1x3nvzmd2b0drsahlp1gxi8s"))))
1332 (build-system go-build-system)
1333 (arguments
1334 '(#:import-path "github.com/docker/machine"))
1335 (home-page "https://github.com/docker/machine")
1336 (synopsis "Machine management for a container-centric world")
1337 (description
1338 "@dfn{Machine} lets you create Docker hosts on your computer, on
1339hosting providers, and inside your data center. It creates servers, installs
1340Docker on them, then configures the Docker client to talk to them.")
1341 (license license:asl2.0))))
d850e7a0
PAR
1342
1343(define-public go-github-com-gorhill-cronexpr
1344 (let ((commit "f0984319b44273e83de132089ae42b1810f4933b")
1345 (revision "0"))
1346 (package
1347 (name "go-github-com-gorhill-cronexpr")
1348 (version (git-version "0.0.0" revision commit))
1349 (source
1350 (origin
1351 (method git-fetch)
1352 (uri (git-reference
1353 (url "https://github.com/gorhill/cronexpr.git")
1354 (commit commit)))
1355 (file-name (git-file-name name version))
1356 (sha256
1357 (base32
1358 "0dphhhqy3i7265znv3m8n57l80dmaq6z4hsj5kgd87qd19z8x0l2"))))
1359 (build-system go-build-system)
1360 (arguments
1361 '(#:import-path "github.com/gorhill/cronexpr"))
1362 (home-page "https://github.com/gorhill/cronexpr")
1363 (synopsis "Cron expression parser in the Go language")
1364 (description
1365 "This package provides a cron expression parser in the Go language.
1366Given a cron expression and a time stamp, you can get the next time stamp
1367which satisfies the cron expression.")
1368 (license (list license:gpl3+
1369 license:asl2.0)))))
abd47216
PAR
1370
1371(define-public go-gopkg-in-check-v1
a2dbcfdd
LF
1372 (let ((commit "788fd78401277ebd861206a03c884797c6ec5541")
1373 (revision "1"))
abd47216
PAR
1374 (package
1375 (name "go-gopkg-in-check-v1")
a2dbcfdd 1376 (version (git-version "1.0.0" revision commit))
abd47216
PAR
1377 (source
1378 (origin
1379 (method git-fetch)
1380 (uri (git-reference
1381 (url "https://github.com/go-check/check")
1382 (commit commit)))
1383 (file-name (git-file-name name version))
1384 (sha256
1385 (base32
a2dbcfdd 1386 "0v3bim0j375z81zrpr5qv42knqs0y2qv2vkjiqi5axvb78slki1a"))))
abd47216
PAR
1387 (build-system go-build-system)
1388 (arguments
1389 '(#:import-path "gopkg.in/check.v1"))
a2dbcfdd
LF
1390 (propagated-inputs
1391 `(("go-github-com-kr-pretty" ,go-github-com-kr-pretty)))
abd47216
PAR
1392 (home-page "https://gopkg.in/check.v1")
1393 (synopsis "Test framework for the Go language")
a2dbcfdd 1394 (description "This package provides a test library for the Go language.")
abd47216 1395 (license license:asl2.0))))
d2c5e912
PAR
1396
1397(define-public go-gopkg-in-yaml-v2
c17e69b3
LF
1398 (package
1399 (name "go-gopkg-in-yaml-v2")
1400 (version "2.2.2")
1401 (source
1402 (origin
1403 (method git-fetch)
1404 (uri (git-reference
1405 (url "https://gopkg.in/yaml.v2.git")
1406 (commit (string-append "v" version))))
1407 (file-name (git-file-name name version))
1408 (sha256
1409 (base32
1410 "01wj12jzsdqlnidpyjssmj0r4yavlqy7dwrg7adqd8dicjc4ncsa"))))
1411 (build-system go-build-system)
1412 (arguments
1413 '(#:import-path "gopkg.in/yaml.v2"))
1414 (native-inputs
1415 `(("go-gopkg-in-check-v1" ,go-gopkg-in-check-v1)))
1416 (home-page "https://gopkg.in/yaml.v2")
1417 (synopsis "YAML reader and writer for the Go language")
1418 (description
1419 "This package provides a Go library for encode and decode YAML
d2c5e912 1420values.")
c17e69b3 1421 (license license:asl2.0)))
3291be81
PN
1422
1423(define-public go-github-com-mattn-go-isatty
24e3520d
LF
1424 (package
1425 (name "go-github-com-mattn-go-isatty")
df14a8b6 1426 (version "0.0.11")
24e3520d
LF
1427 (source
1428 (origin
1429 (method git-fetch)
1430 (uri (git-reference
1431 (url "https://github.com/mattn/go-isatty")
1432 (commit (string-append "v" version))))
1433 (file-name (git-file-name name version))
1434 (sha256
1435 (base32
df14a8b6 1436 "0h671sv7hfprja495kavazkalkx7xzaqksjh13brcnwq67ijrali"))))
24e3520d 1437 (build-system go-build-system)
36bb1d5a 1438 (propagated-inputs
561d391b 1439 `(("go-golang-org-x-sys" ,go-golang-org-x-sys)))
24e3520d
LF
1440 (arguments
1441 '(#:import-path "github.com/mattn/go-isatty"))
1442 (home-page "https://github.com/mattn/go-isatty")
1443 (synopsis "Provide @code{isatty} for Golang")
1444 (description "This package provides @code{isatty}, a Go module that can
3291be81
PN
1445tell you whether a file descriptor points to a terminal and the type of the
1446terminal.")
24e3520d 1447 (license license:expat)))
7601b4e4
PN
1448
1449(define-public go-github-com-mattn-go-colorable
1450 (let ((commit "efa589957cd060542a26d2dd7832fd6a6c6c3ade")
1451 (revision "0"))
1452 (package
1453 (name "go-github-com-mattn-go-colorable")
1454 (version (git-version "0.0.0" revision commit))
1455 (source
1456 (origin
1457 (method git-fetch)
1458 (uri (git-reference
1459 (url "https://github.com/mattn/go-colorable")
1460 (commit commit)))
1461 (file-name (git-file-name name version))
1462 (sha256
1463 (base32
1464 "0kshi4hvm0ayrsxqxy0599iv81kryhd2fn9lwjyczpj593cq069r"))))
1465 (build-system go-build-system)
1466 (native-inputs
1467 `(("go-github-com-mattn-go-isatty"
1468 ,go-github-com-mattn-go-isatty)))
1469 (arguments
1470 '(#:import-path "github.com/mattn/go-colorable"))
1471 (home-page "https://github.com/mattn/go-colorable")
1472 (synopsis "Handle ANSI color escapes on Windows")
1473 (description "This package provides @code{colorable}, a module that
1474makes it possible to handle ANSI color escapes on Windows.")
1475 (license license:expat))))
32cb1af6
PN
1476
1477(define-public go-github-com-mgutz-ansi
1478 (let ((commit "9520e82c474b0a04dd04f8a40959027271bab992")
1479 (revision "0"))
1480 (package
1481 (name "go-github-com-mgutz-ansi")
1482 (version (git-version "0.0.0" revision commit))
1483 (source
1484 (origin
1485 (method git-fetch)
1486 (uri (git-reference
1487 (url
1488 "https://github.com/mgutz/ansi")
1489 (commit commit)))
1490 (file-name (git-file-name name version))
1491 (sha256
1492 (base32
1493 "00bz22314j26736w1f0q4jy9d9dfaml17vn890n5zqy3cmvmww1j"))))
1494 (build-system go-build-system)
1495 (native-inputs
1496 `(("go-github-com-mattn-go-isatty"
1497 ,go-github-com-mattn-go-isatty)
1498 ("go-github-com-mattn-go-colorable"
1499 ,go-github-com-mattn-go-colorable)))
1500 (arguments
1501 '(#:import-path "github.com/mgutz/ansi"))
1502 (home-page "https://github.com/mgutz/ansi")
1503 (synopsis "Small, fast library to create ANSI colored strings and codes")
1504 (description "This package provides @code{ansi}, a Go module that can
1505generate ANSI colored strings.")
1506 (license license:expat))))
e25ddef5
PN
1507
1508(define-public go-github-com-aarzilli-golua
1509 (let ((commit "03fc4642d792b1f2bc5e7343b403cf490f8c501d")
1510 (revision "0"))
1511 (package
1512 (name "go-github-com-aarzilli-golua")
1513 (version (git-version "0.0.0" revision commit))
1514 (source
1515 (origin
1516 (method git-fetch)
1517 (uri (git-reference
1518 (url
1519 "https://github.com/aarzilli/golua")
1520 (commit commit)))
1521 (file-name (git-file-name name version))
1522 (sha256
1523 (base32
1524 "1d9hr29i36cza98afj3g6rs3l7xbkprwzz0blcxsr9dd7nak20di"))))
1525 (build-system go-build-system)
5c475841
PN
1526 ;; From go-1.10 onward, "pkg" compiled libraries are not re-used, so
1527 ;; when this package required as input for another one, it will have to
1528 ;; be built again. Thus its CGO requirements must be made available in
1529 ;; the environment, that is, they must be propagated.
1530 (propagated-inputs
e25ddef5
PN
1531 `(("lua" ,lua)))
1532 (arguments
1533 `(#:unpack-path "github.com/aarzilli/golua"
1534 #:import-path "github.com/aarzilli/golua/lua"
1535 #:phases
1536 (modify-phases %standard-phases
5c475841
PN
1537 ;; While it's possible to fix the CGO_LDFLAGS with the "-tags"
1538 ;; command line argument, go-1.10+ does not re-use the produced pkg
1539 ;; for dependencies, which means we would need to propagate the
1540 ;; same "-tags" argument to all golua referrers. A substitution is
1541 ;; more convenient here. We also need to propagate the lua
1542 ;; dependency to make it available to referrers.
1543 (add-after 'unpack 'fix-lua-ldflags
1544 (lambda _
1545 (substitute* "src/github.com/aarzilli/golua/lua/lua.go"
1546 (("#cgo linux,!llua,!luaa LDFLAGS: -llua5.3")
1547 "#cgo linux,!llua,!luaa LDFLAGS: -llua")))))))
e25ddef5
PN
1548 (home-page "https://github.com/aarzilli/golua")
1549 (synopsis "Go Bindings for the Lua C API")
1550 (description "This package provides @code{lua}, a Go module that can
1551run a Lua virtual machine.")
1552 (license license:expat))))
f25e3b39
PN
1553
1554(define-public go-gitlab-com-ambrevar-golua-unicode
1555 (let ((commit "97ce517e7a1fe2407a90c317a9c74b173d396144")
1556 (revision "0"))
1557 (package
1558 (name "go-gitlab-com-ambrevar-golua-unicode")
1559 (version (git-version "0.0.0" revision commit))
1560 (source
1561 (origin
1562 (method git-fetch)
1563 (uri (git-reference
1564 (url
1565 "https://gitlab.com/ambrevar/golua")
1566 (commit commit)))
1567 (file-name (git-file-name name version))
1568 (sha256
1569 (base32
1570 "1izcp7p8nagjwqd13shb0020w7xhppib1a3glw2d1468bflhksnm"))))
1571 (build-system go-build-system)
1572 (native-inputs
1573 `(("lua" ,lua)
1574 ("go-github-com-aarzilli-golua" ,go-github-com-aarzilli-golua)))
1575 (arguments
1576 `(#:unpack-path "gitlab.com/ambrevar/golua"
1577 #:import-path "gitlab.com/ambrevar/golua/unicode"
1578 #:phases
1579 (modify-phases %standard-phases
1580 (replace 'check
1581 (lambda* (#:key import-path #:allow-other-keys)
1582 (setenv "USER" "homeless-dude")
1583 (invoke "go" "test" import-path))))))
1584 (home-page "https://gitlab.com/ambrevar/golua")
1585 (synopsis "Add Unicode support to Golua")
1586 (description "This extension to Arzilli's Golua adds Unicode support to
1587all functions from the Lua string library. Lua patterns are replaced by Go
1588regexps. This breaks compatibility with Lua, but Unicode support breaks it
1589anyways and Go regexps are more powerful.")
1590 (license license:expat))))
b4d1440f
PN
1591
1592(define-public go-github-com-yookoala-realpath
1593 (let ((commit "d19ef9c409d9817c1e685775e53d361b03eabbc8")
1594 (revision "0"))
1595 (package
1596 (name "go-github-com-yookoala-realpath")
1597 (version (git-version "0.0.0" revision commit))
1598 (source
1599 (origin
1600 (method git-fetch)
1601 (uri (git-reference
1602 (url
1603 "https://github.com/yookoala/realpath")
1604 (commit commit)))
1605 (file-name (git-file-name name version))
1606 (sha256
1607 (base32
1608 "0qvz1dcdldf53rq69fli76z5k1vr7prx9ds1d5rpzgs68kwn40nw"))))
1609 (build-system go-build-system)
1610 (arguments
1611 `(#:import-path "github.com/yookoala/realpath"))
1612 (home-page "https://github.com/yookoala/realpath")
1613 (synopsis "@code{realpath} for Golang")
1614 (description "This package provides @code{realpath}, a Go module that
1615when provided with a valid relative path / alias path, it will return you with
1616a string of its real absolute path in the system.")
0e11f5da 1617 (license license:expat))))
54b83f0e
PN
1618
1619(define-public go-gitlab-com-ambrevar-damerau
1620 (let ((commit "883829e1f25fad54015772ea663e69017cf22352")
1621 (revision "0"))
1622 (package
1623 (name "go-gitlab-com-ambrevar-damerau")
1624 (version (git-version "0.0.0" revision commit))
1625 (source
1626 (origin
1627 (method git-fetch)
1628 (uri (git-reference
1629 (url
1630 "https://gitlab.com/ambrevar/damerau")
1631 (commit commit)))
1632 (file-name (git-file-name name version))
1633 (sha256
1634 (base32
1635 "1b9p8fypc914ij1afn6ir346zsgfqrc5mqc1k3d53n4snypq27qv"))))
1636 (build-system go-build-system)
1637 (arguments
1638 `(#:import-path "gitlab.com/ambrevar/damerau"))
1639 (home-page "https://gitlab.com/ambrevar/damerau")
1640 (synopsis "Damerau-Levenshtein distance for Golang")
1641 (description "This is a spelling corrector implementing the
1642Damerau-Levenshtein distance. Takes a string value input from the user.
1643Looks for an identical word on a list of words, if none is found, look for a
1644similar word.")
1645 (license license:expat))))
c4962817
PN
1646
1647(define-public go-github-com-stevedonovan-luar
1648 (let ((commit "22d247e5366095f491cd83edf779ee99a78f5ead")
1649 (revision "0"))
1650 (package
1651 (name "go-github-com-stevedonovan-luar")
1652 (version (git-version "0.0.0" revision commit))
1653 (source
1654 (origin
1655 (method git-fetch)
1656 (uri (git-reference
1657 (url
1658 "https://github.com/stevedonovan/luar")
1659 (commit commit)))
1660 (file-name (git-file-name name version))
1661 (sha256
1662 (base32
1663 "1acjgw9cz1l0l9mzkyk7irz6cfk31wnxgbwa805fvm1rqcjzin2c"))))
1664 (build-system go-build-system)
1665 (native-inputs
1666 `(("go-github-com-aarzilli-golua" ,go-github-com-aarzilli-golua)))
1667 (arguments
1668 `(#:tests? #f ; Upstream tests are broken.
1669 #:import-path "github.com/stevedonovan/luar"))
1670 (home-page "https://github.com/stevedonovan/luar")
1671 (synopsis "Lua reflection bindings for Go")
1672 (description "Luar is designed to make using Lua from Go more
1673convenient. Go structs, slices and maps can be automatically converted to Lua
1674tables and vice-versa. The resulting conversion can either be a copy or a
1675proxy. In the latter case, any change made to the result will reflect on the
1676source.
1677
1678Any Go function can be made available to Lua scripts, without having to write
1679C-style wrappers.
1680
1681Luar support cyclic structures (lists, etc.).
1682
1683User-defined types can be made available to Lua as well: their exported
1684methods can be called and usual operations such as indexing or arithmetic can
1685be performed.")
1686 (license license:expat))))
bc3138d2 1687
9630ae34
PN
1688(define-public go-github-com-michiwend-golang-pretty
1689 (let ((commit "8ac61812ea3fa540f3f141a444fcb0dd713cdca4")
1690 (revision "0"))
1691 (package
1692 (name "go-github-com-michiwend-golang-pretty")
1693 (version (git-version "0.0.0" revision commit))
1694 (source
1695 (origin
1696 (method git-fetch)
1697 (uri (git-reference
1698 (url
1699 "https://github.com/michiwend/golang-pretty")
1700 (commit commit)))
1701 (file-name (git-file-name name version))
1702 (sha256
1703 (base32
1704 "0rjfms0csjqi91xnddzx3rcrcaikc7xc027617px3kdwdap80ir4"))))
1705 (build-system go-build-system)
1706 (native-inputs
1707 `(("go-github-com-kr-text" ,go-github-com-kr-text)))
1708 (arguments
1709 `(#:tests? #f ; Upstream tests seem to be broken.
1710 #:import-path "github.com/michiwend/golang-pretty"))
1711 (home-page "https://github.com/michiwend/golang-pretty")
1712 (synopsis "Pretty printing for Go values")
1713 (description "Package @code{pretty} provides pretty-printing for Go
1714values. This is useful during debugging, to avoid wrapping long output lines
1715in the terminal.
1716
1717It provides a function, @code{Formatter}, that can be used with any function
1718that accepts a format string. It also provides convenience wrappers for
1719functions in packages @code{fmt} and @code{log}.")
1720 (license license:expat))))
62879d22
PN
1721
1722(define-public go-github-com-michiwend-gomusicbrainz
1723 (let ((commit "0cdeb13f9b24d2c714feb7e3c63d595cf7121d7d")
1724 (revision "0"))
1725 (package
1726 (name "go-github-com-michiwend-gomusicbrainz")
1727 (version (git-version "0.0.0" revision commit))
1728 (source
1729 (origin
1730 (method git-fetch)
1731 (uri (git-reference
1732 (url
1733 "https://github.com/michiwend/gomusicbrainz")
1734 (commit commit)))
1735 (file-name (git-file-name name version))
1736 (sha256
1737 (base32
1738 "1li9daw0kghb80rdmxbh7g72qhxcvx3rvhwq5gs0jrr9hb8pjvcn"))))
1739 (build-system go-build-system)
1740 (native-inputs
1741 `(("go-github-com-michiwend-golang-pretty" ,go-github-com-michiwend-golang-pretty)
1742 ("go-github-com-kr-text" ,go-github-com-kr-text)))
1743 (arguments
1744 `(#:import-path "github.com/michiwend/gomusicbrainz"))
1745 (home-page "https://github.com/michiwend/gomusicbrainz")
1746 (synopsis "MusicBrainz WS2 client library for Golang")
1747 (description "Currently GoMusicBrainz provides methods to perform search
1748and lookup requests. Browse requests are not supported yet.")
1749 (license license:expat))))
53182924
PN
1750
1751(define-public go-github-com-wtolson-go-taglib
1752 (let ((commit "6e68349ff94ecea412de7e748cb5eaa26f472777")
1753 (revision "0"))
1754 (package
1755 (name "go-github-com-wtolson-go-taglib")
1756 (version (git-version "0.0.0" revision commit))
1757 (source
1758 (origin
1759 (method git-fetch)
1760 (uri (git-reference
1761 (url
1762 "https://github.com/wtolson/go-taglib")
1763 (commit commit)))
1764 (file-name (git-file-name name version))
1765 (sha256
1766 (base32
1767 "1cpjqnrviwflz150g78iir5ndrp3hh7a93zbp4dwbg6sb2q141p2"))))
1768 (build-system go-build-system)
46a4ae22
PN
1769 ;; From go-1.10 onward, "pkg" compiled libraries are not re-used, so
1770 ;; when this package required as input for another one, it will have to
1771 ;; be built again. Thus its CGO requirements must be made available in
1772 ;; the environment, that is, they must be propagated.
1773 (propagated-inputs
53182924
PN
1774 `(("pkg-config" ,pkg-config)
1775 ("taglib" ,taglib)))
1776 (arguments
46a4ae22 1777 `(#:import-path "github.com/wtolson/go-taglib"
e53f9ce2 1778 ;; Tests don't pass "vet" on Go since 1.11. See
46a4ae22
PN
1779 ;; https://github.com/wtolson/go-taglib/issues/12.
1780 #:phases
1781 (modify-phases %standard-phases
1782 (replace 'check
1783 (lambda* (#:key import-path #:allow-other-keys)
1784 (invoke "go" "test"
1785 "-vet=off"
1786 import-path))))))
53182924
PN
1787 (home-page "https://github.com/wtolson/go-taglib")
1788 (synopsis "Go wrapper for taglib")
1789 (description "Go wrapper for taglib")
1790 (license license:unlicense))))
5787e152 1791
5787e152 1792(define-public go-github-com-gogo-protobuf
2f9bbd8e
LF
1793 (package
1794 (name "go-github-com-gogo-protobuf")
a2c885b3 1795 (version "1.3.1")
2f9bbd8e
LF
1796 (source (origin
1797 (method git-fetch)
1798 (uri (git-reference
1799 (url "https://github.com/gogo/protobuf")
1800 (commit (string-append "v" version))))
1801 (file-name (git-file-name name version))
1802 (sha256
1803 (base32
a2c885b3 1804 "0x77x64sxjgfhmbijqfzmj8h4ar25l2w97h01q3cqs1wk7zfnkhp"))))
2f9bbd8e
LF
1805 (build-system go-build-system)
1806 (arguments
35defe61
LF
1807 `(#:import-path "github.com/gogo/protobuf"
1808 ; Source-only package
1809 #:tests? #f
1810 #:phases
1811 (modify-phases %standard-phases
1812 (delete 'build))))
2f9bbd8e
LF
1813 (synopsis "Protocol Buffers for Go with Gadgets")
1814 (description "Gogoprotobuf is a fork of golang/protobuf with extra code
5787e152
PN
1815generation features. This code generation is used to achieve:
1816@itemize
1817@item fast marshalling and unmarshalling
1818@item more canonical Go structures
1819@item goprotobuf compatibility
1820@item less typing by optionally generating extra helper code
1821@item peace of mind by optionally generating test and benchmark code
1822@item other serialization formats
1823@end itemize")
2f9bbd8e
LF
1824 (home-page "https://github.com/gogo/protobuf")
1825 (license license:bsd-3)))
5787e152 1826
386bd7ba
PN
1827(define-public go-github-com-libp2p-go-flow-metrics
1828 (let ((commit "7e5a55af485341567f98d6847a373eb5ddcdcd43")
1829 (revision "0"))
1830 (package
1831 (name "go-github-com-libp2p-go-flow-metrics")
1832 (version (git-version "0.2.0" revision commit))
1833 (source
1834 (origin
1835 (method git-fetch)
1836 (uri (git-reference
1837 (url "https://github.com/libp2p/go-flow-metrics.git")
1838 (commit commit)))
1839 (file-name (git-file-name name version))
1840 (sha256
1841 (base32
1842 "1p87iyk6q6f3g3xkncssx400qlld8f2z93qiz8m1f97grfyhjif1"))))
1843 (build-system go-build-system)
1844 (arguments
1845 `(#:import-path "github.com/libp2p/go-flow-metrics"
1846 ;; TODO: Tests hang.
1847 #:tests? #f))
1848 (home-page
1849 "https://github.com/libp2p/go-flow-metrics")
1850 (synopsis "Simple library for tracking flow metrics")
1851 (description "A simple alternative to rcrowley's @command{go-metrics}
1852that's a lot faster (and only does simple bandwidth metrics).")
1853 (license license:expat))))
6a95e3a3
PN
1854
1855(define-public go-github-com-davecgh-go-spew
1856 (let ((commit "d8f796af33cc11cb798c1aaeb27a4ebc5099927d")
1857 (revision "0"))
1858 (package
1859 (name "go-github-com-davecgh-go-spew")
1860 (version (git-version "0.0.0" revision commit))
1861 (source
1862 (origin
1863 (method git-fetch)
1864 (uri (git-reference
1865 (url "https://github.com/davecgh/go-spew.git")
1866 (commit commit)))
1867 (file-name (git-file-name name version))
1868 (sha256
1869 (base32
1870 "19z27f306fpsrjdvkzd61w1bdazcdbczjyjck177g33iklinhpvx"))))
1871 (build-system go-build-system)
1872 (arguments
1873 '(#:unpack-path "github.com/davecgh/go-spew"
1874 #:import-path "github.com/davecgh/go-spew/spew"))
1875 (home-page "https://github.com/davecgh/go-spew")
1876 (synopsis "Deep pretty printer for Go data structures to aid in debugging")
1877 (description "Package @command{spew} implements a deep pretty printer
1878for Go data structures to aid in debugging.
1879
1880A quick overview of the additional features spew provides over the built-in printing facilities for Go data types are as follows:
1881
1882@itemize
1883@item Pointers are dereferenced and followed.
1884@item Circular data structures are detected and handled properly.
1885@item Custom Stringer/error interfaces are optionally invoked, including on
1886unexported types.
1887@item Custom types which only implement the Stringer/error interfaces via a
1888pointer receiver are optionally invoked when passing non-pointer variables.
1889@item Byte arrays and slices are dumped like the hexdump -C command which
1890includes offsets, byte values in hex, and ASCII output (only when using Dump
1891style).
1892@end itemize\n")
1893 (license license:isc))))
171c3259
PN
1894
1895(define-public go-github-com-btcsuite-btclog
1896 (let ((commit "84c8d2346e9fc8c7b947e243b9c24e6df9fd206a")
1897 (revision "0"))
1898 (package
1899 (name "go-github-com-btcsuite-btclog")
1900 (version (git-version "0.0.3" revision commit))
1901 (source
1902 (origin
1903 (method git-fetch)
1904 (uri (git-reference
1905 (url "https://github.com/btcsuite/btclog.git")
1906 (commit commit)))
1907 (file-name (git-file-name name version))
1908 (sha256
1909 (base32
1910 "02dl46wcnfpg9sqvg0ipipkpnd7lrf4fnvb9zy56jqa7mfcwc7wk"))))
1911 (build-system go-build-system)
1912 (arguments
1913 '(#:import-path "github.com/btcsuite/btclog"))
1914 (home-page "https://github.com/btcsuite/btclog")
1915 (synopsis "Subsystem aware logger for Go")
1916 (description "Package @command{btclog} defines a logger interface and
1917provides a default implementation of a subsystem-aware leveled logger
1918implementing the same interface.")
1919 (license license:isc))))
d5599afa
PN
1920
1921(define-public go-github-com-btcsuite-btcd-btcec
1922 (let ((commit "67e573d211ace594f1366b4ce9d39726c4b19bd0")
1923 (revision "0"))
1924 (package
1925 (name "go-github-com-btcsuite-btcd-btcec")
1926 (version (git-version "0.12.0-beta" revision commit))
1927 (source
1928 (origin
1929 (method git-fetch)
1930 (uri (git-reference
1931 (url "https://github.com/btcsuite/btcd.git")
1932 (commit commit)))
1933 (file-name (git-file-name name version))
1934 (sha256
1935 (base32
1936 "04s92gsy71w1jirlr5lkk9y6r5cparbas7nmf6ywbp7kq7fn8ajn"))))
1937 (build-system go-build-system)
1938 (arguments
1939 '(#:unpack-path "github.com/btcsuite/btcd"
1940 #:import-path "github.com/btcsuite/btcd/btcec"))
1941 (native-inputs
1942 `(("go-github-com-davecgh-go-spew" ,go-github-com-davecgh-go-spew)))
1943 (home-page "https://github.com/btcsuite/btcd")
1944 (synopsis "Elliptic curve cryptography to work with Bitcoin")
1945 (description "Package @command{btcec} implements elliptic curve
1946cryptography needed for working with Bitcoin (secp256k1 only for now). It is
1947designed so that it may be used with the standard crypto/ecdsa packages
1948provided with Go. A comprehensive suite of test is provided to ensure proper
1949functionality. Package @command{btcec} was originally based on work from
1950ThePiachu which is licensed under the same terms as Go, but it has
2ec41781 1951significantly diverged since then. The @command{btcsuite} developers original
d5599afa
PN
1952is licensed under the liberal ISC license.
1953
1954Although this package was primarily written for btcd, it has intentionally
1955been designed so it can be used as a standalone package for any projects
1956needing to use secp256k1 elliptic curve cryptography.")
1957 (license license:isc))))
ff2d11c3
PN
1958
1959(define-public go-github-com-minio-sha256-simd
be47a83a
LF
1960 (package
1961 (name "go-github-com-minio-sha256-simd")
e4d8efe9 1962 (version "0.1.1")
be47a83a
LF
1963 (source
1964 (origin
1965 (method git-fetch)
1966 (uri (git-reference
1967 (url "https://github.com/minio/sha256-simd.git")
1968 (commit (string-append "v" version))))
1969 (file-name (git-file-name name version))
1970 (sha256
1971 (base32
e4d8efe9 1972 "1j0iqsckm97g4l79vd4mc7apbmkdar23jpzqpnpdhwpfd834j8lp"))))
be47a83a
LF
1973 (build-system go-build-system)
1974 (arguments
1975 '(#:import-path "github.com/minio/sha256-simd"))
1976 (home-page "https://github.com/minio/sha256-simd")
1977 (synopsis "Accelerate SHA256 computations in pure Go")
1978 (description "Accelerate SHA256 computations in pure Go using AVX512 and
ff2d11c3
PN
1979AVX2 for Intel and ARM64 for ARM. On AVX512 it provides an up to 8x
1980improvement (over 3 GB/s per core) in comparison to AVX2.
1981
1982This package is designed as a replacement for @command{crypto/sha256}. For
1983Intel CPUs it has two flavors for AVX512 and AVX2 (AVX/SSE are also
1984supported). For ARM CPUs with the Cryptography Extensions, advantage is taken
1985of the SHA2 instructions resulting in a massive performance improvement.
1986
1987This package uses Golang assembly. The AVX512 version is based on the Intel's
1988\"multi-buffer crypto library for IPSec\" whereas the other Intel
1989implementations are described in \"Fast SHA-256 Implementations on Intel
1990Architecture Processors\" by J. Guilford et al.")
be47a83a 1991 (license license:asl2.0)))
71f36804
PN
1992
1993(define-public go-github-com-libp2p-go-libp2p-crypto
1994 (let ((commit "7240b40a3ddc47c4d17c15baabcbe45e5219171b")
1995 (revision "0"))
1996 (package
1997 (name "go-github-com-libp2p-go-libp2p-crypto")
1998 (version (git-version "2.0.1" revision commit))
1999 (source
2000 (origin
2001 (method git-fetch)
2002 (uri (git-reference
2003 (url "https://github.com/libp2p/go-libp2p-crypto.git")
2004 (commit commit)))
2005 (file-name (git-file-name name version))
2006 (sha256
2007 (base32
2008 "0qwpy57qv5143l9dlfwfvpqsxdd2i4zwnawx1w4pmgxxim3nw1wb"))))
2009 (build-system go-build-system)
2010 (arguments
2011 '(#:import-path "github.com/libp2p/go-libp2p-crypto"))
2012 (native-inputs
561d391b 2013 `(("go-golang-org-x-crypto" ,go-golang-org-x-crypto)
71f36804 2014 ("go-github-com-btcsuite-btcd-btcec" ,go-github-com-btcsuite-btcd-btcec)
35defe61 2015 ("go-github-com-gogo-protobuf" ,go-github-com-gogo-protobuf)
71f36804
PN
2016 ("go-github-com-minio-sha256-simd" ,go-github-com-minio-sha256-simd)))
2017 (home-page
2018 "https://github.com/libp2p/go-libp2p-crypto")
2019 (synopsis "Various cryptographic utilities used by IPFS")
2020 (description "Various cryptographic utilities used by IPFS")
2021 (license license:expat))))
15272a50
PN
2022
2023(define-public go-github-com-mr-tron-base58
2024 (let ((commit "d724c80ecac7b49e4e562d58b2b4f4ee4ed8c312")
2025 (revision "0"))
2026 (package
2027 (name "go-github-com-mr-tron-base58")
2028 (version (git-version "1.1.0" revision commit))
2029 (source
2030 (origin
2031 (method git-fetch)
2032 (uri (git-reference
2033 (url "https://github.com/mr-tron/base58.git")
2034 (commit commit)))
2035 (file-name (git-file-name name version))
2036 (sha256
2037 (base32
2038 "12qhgnn9wf3c1ang16r4i778whk4wsrj7d90h2xgmz4fi1469rqa"))))
2039 (build-system go-build-system)
2040 (arguments
2041 `(#:unpack-path "github.com/mr-tron/base58"
2042 #:import-path "github.com/mr-tron/base58/base58"))
2043 (home-page "https://github.com/mr-tron/base58")
2044 (synopsis "Fast implementation of base58 encoding on Golang")
2045 (description "Fast implementation of base58 encoding on Golang. A
2046trivial @command{big.Int} encoding benchmark results in 6 times faster
2047encoding and 8 times faster decoding.")
2048 (license license:expat))))
27d59d8b
PN
2049
2050(define-public go-github-com-gxed-hashland-keccakpg
2051 (let ((commit "d9f6b97f8db22dd1e090fd0bbbe98f09cc7dd0a8")
2052 (revision "0"))
2053 (package
2054 (name "go-github-com-gxed-hashland-keccakpg")
2055 (version (git-version "0.0.0" revision commit))
2056 (source
2057 (origin
2058 (method git-fetch)
2059 (uri (git-reference
2060 (url "https://github.com/gxed/hashland.git")
2061 (commit commit)))
2062 (file-name (git-file-name name version))
2063 (sha256
2064 (base32
2065 "1q23y4lacsz46k9gmgfw4iwwydw36j2601rbidmmswl94grpc386"))))
2066 (build-system go-build-system)
2067 (arguments
2068 '(#:unpack-path "github.com/gxed/hashland"
2069 #:import-path "github.com/gxed/hashland/keccakpg"))
2070 (home-page "https://github.com/gxed/hashland")
2071 (synopsis "Implements the Keccak (SHA-3) hash algorithm in Go")
2072 (description "Package @command{keccak} implements the Keccak (SHA-3)
2073hash algorithm. See http://keccak.noekeon.org.")
2074 (license license:expat))))
90f2a848
PN
2075
2076(define-public go-github-com-minio-blake2b-simd
2077 (let ((commit "3f5f724cb5b182a5c278d6d3d55b40e7f8c2efb4")
2078 (revision "0"))
2079 (package
2080 (name "go-github-com-minio-blake2b-simd")
2081 (version (git-version "0.0.0" revision commit))
2082 (source
2083 (origin
2084 (method git-fetch)
2085 (uri (git-reference
2086 (url "https://github.com/minio/blake2b-simd.git")
2087 (commit commit)))
2088 (file-name (git-file-name name version))
2089 (sha256
2090 (base32
2091 "0b6jbnj62c0gmmfd4zdmh8xbg01p80f13yygir9xprqkzk6fikmd"))))
2092 (build-system go-build-system)
2093 (arguments
2094 '(#:import-path "github.com/minio/blake2b-simd"))
2095 (home-page "https://github.com/minio/blake2b-simd")
2096 (synopsis "Fast hashing in pure Go of BLAKE2b with SIMD instructions")
2097 (description "This package was initially based on the pure go BLAKE2b
2098implementation of Dmitry Chestnykh and merged with the (cgo dependent) AVX
2099optimized BLAKE2 implementation (which in turn is based on the official
2100implementation. It does so by using Go's Assembler for amd64 architectures
2101with a golang only fallback for other architectures.
2102
2103In addition to AVX there is also support for AVX2 as well as SSE. Best
2104performance is obtained with AVX2 which gives roughly a 4X performance
2105increase approaching hashing speeds of 1GB/sec on a single core.")
2106 (license license:asl2.0))))
9a7f1575
PN
2107
2108(define-public go-github-com-spaolacci-murmur3
2109 (let ((commit "f09979ecbc725b9e6d41a297405f65e7e8804acc")
2110 (revision "0"))
2111 (package
2112 (name "go-github-com-spaolacci-murmur3")
2113 (version (git-version "1.1" revision commit))
2114 (source
2115 (origin
2116 (method git-fetch)
2117 (uri (git-reference
2118 (url "https://github.com/spaolacci/murmur3.git")
2119 (commit commit)))
2120 (file-name (git-file-name name version))
2121 (sha256
2122 (base32
2123 "1lv3zyz3jy2d76bhvvs8svygx66606iygdvwy5cwc0p5z8yghq25"))))
2124 (build-system go-build-system)
2125 (arguments
2126 '(#:import-path "github.com/spaolacci/murmur3"))
2127 (home-page "https://github.com/spaolacci/murmur3")
2128 (synopsis "Native MurmurHash3 Go implementation")
2129 (description "Native Go implementation of Austin Appleby's third
2130MurmurHash revision (aka MurmurHash3).
2131
2132Reference algorithm has been slightly hacked as to support the streaming mode
2133required by Go's standard Hash interface.")
2134 (license license:bsd-3))))
2e42e587
PN
2135
2136(define-public go-github-com-multiformats-go-multihash
2137 (let ((commit "97cdb562a04c6ef66d8ed40cd62f8fbcddd396d6")
2138 (revision "0"))
2139 (package
2140 (name "go-github-com-multiformats-go-multihash")
2141 (version (git-version "1.0.8" revision commit))
2142 (source
2143 (origin
2144 (method git-fetch)
2145 (uri (git-reference
2146 (url "https://github.com/multiformats/go-multihash.git")
2147 (commit commit)))
2148 (file-name (git-file-name name version))
2149 (sha256
2150 (base32
2151 "02wd9akrwy4y5m0nig9m24p14bjjgb4n1djydrq8cm4yhbvjrrk0"))))
2152 (build-system go-build-system)
2153 (arguments
2154 '(#:import-path "github.com/multiformats/go-multihash"))
2155 (native-inputs
2156 `(("go-github-com-mr-tron-base58" ,go-github-com-mr-tron-base58)
2157 ("go-github-com-gxed-hashland-keccakpg" ,go-github-com-gxed-hashland-keccakpg)
2158 ("go-github-com-minio-blake2b-simd" ,go-github-com-minio-blake2b-simd)
2159 ("go-github-com-minio-sha256-simd" ,go-github-com-minio-sha256-simd)
2160 ("go-github-com-spaolacci-murmur3" ,go-github-com-spaolacci-murmur3)
561d391b 2161 ("go-golang-org-x-crypto" ,go-golang-org-x-crypto)))
2e42e587
PN
2162 (home-page "https://github.com/multiformats/go-multihash")
2163 (synopsis "Multihash implementation in Go")
2164 (description "Multihash implementation in Go.")
2165 (license license:expat))))
1db1e3c7
PN
2166
2167(define-public go-github-com-libp2p-go-libp2p-peer
2168 (let ((commit "993d742bc29dcf4894b7730ba610fd78900be76c")
2169 (revision "0"))
2170 (package
2171 (name "go-github-com-libp2p-go-libp2p-peer")
2172 (version (git-version "2.3.8" revision commit))
2173 (source
2174 (origin
2175 (method git-fetch)
2176 (uri (git-reference
2177 (url "https://github.com/libp2p/go-libp2p-peer.git")
2178 (commit commit)))
2179 (file-name (git-file-name name version))
2180 (sha256
2181 (base32
2182 "1h96qjdi0i1wbr0jliap2903mycphas3ny0zdrm77yca9plcnphh"))))
2183 (build-system go-build-system)
2184 (arguments
2185 '(#:import-path "github.com/libp2p/go-libp2p-peer"))
2186 (native-inputs
2187 `(("go-github-com-libp2p-go-libp2p-crypto" ,go-github-com-libp2p-go-libp2p-crypto)
35defe61 2188 ("go-github-com-gogo-protobuf" ,go-github-com-gogo-protobuf)
1db1e3c7
PN
2189 ("go-github-com-minio-sha256-simd" ,go-github-com-minio-sha256-simd)
2190 ("go-github-com-minio-blake2b-simd" ,go-github-com-minio-blake2b-simd)
2191 ("go-github-com-btcsuite-btcd-btcec" ,go-github-com-btcsuite-btcd-btcec)
2192 ("go-github-com-mr-tron-base58" ,go-github-com-mr-tron-base58)
2193 ("go-github-com-multiformats-go-multihash" ,go-github-com-multiformats-go-multihash)
2194 ("go-github-com-gxed-hashland-keccakpg" ,go-github-com-gxed-hashland-keccakpg)
2195 ("go-github-com-spaolacci-murmur3" ,go-github-com-spaolacci-murmur3)
561d391b 2196 ("go-golang-org-x-crypto" ,go-golang-org-x-crypto)))
1db1e3c7
PN
2197 (home-page "https://github.com/libp2p/go-libp2p-peer")
2198 (synopsis "PKI based identities for use in go-libp2p")
2199 (description "PKI based identities for use in @command{go-libp2p}.")
2200 (license license:expat))))
43a5c177
PN
2201
2202(define-public go-github-com-libp2p-go-libp2p-protocol
2203 (let ((commit "b29f3d97e3a2fb8b29c5d04290e6cb5c5018004b")
2204 (revision "0"))
2205 (package
2206 (name "go-github-com-libp2p-go-libp2p-protocol")
2207 (version (git-version "1.0.0" revision commit))
2208 (source
2209 (origin
2210 (method git-fetch)
2211 (uri (git-reference
2212 (url "https://github.com/libp2p/go-libp2p-protocol.git")
2213 (commit commit)))
2214 (file-name (git-file-name name version))
2215 (sha256
2216 (base32
2217 "1xgjfnx9zcqglg9li29wdqywsp8hz22wx6phns9zscni2jsfidld"))))
2218 (build-system go-build-system)
2219 (arguments
2220 '(#:import-path
2221 "github.com/libp2p/go-libp2p-protocol"))
2222 (home-page "https://github.com/libp2p/go-libp2p-protocol")
2223 (synopsis "Type for protocol strings in Golang")
2224 (description "Just a type for protocol strings. Nothing more.")
2225 (license license:expat))))
77d8a917
PN
2226
2227(define-public go-github-com-libp2p-go-libp2p-metrics
2228 (let ((commit "a10ff6e75dae3c868023867e8caa534a04bdc624")
2229 (revision "0"))
2230 (package
2231 (name "go-github-com-libp2p-go-libp2p-metrics")
2232 (version (git-version "2.1.6" revision commit))
2233 (source
2234 (origin
2235 (method git-fetch)
2236 (uri (git-reference
2237 (url "https://github.com/libp2p/go-libp2p-metrics.git")
2238 (commit commit)))
2239 (file-name (git-file-name name version))
2240 (sha256
2241 (base32
2242 "05wy0cq4h6yg9bzgapcvm2criwriicbswx80ma82gyn4a9fdrk8m"))))
2243 (build-system go-build-system)
2244 (arguments
2245 '(#:import-path "github.com/libp2p/go-libp2p-metrics"))
2246 (native-inputs
2247 `(("go-github-com-libp2p-go-flow-metrics" ,go-github-com-libp2p-go-flow-metrics)
2248 ("go-github-com-libp2p-go-libp2p-peer" ,go-github-com-libp2p-go-libp2p-peer)
2249 ("go-github-com-libp2p-go-libp2p-protocol" ,go-github-com-libp2p-go-libp2p-protocol)
2250 ("go-github-com-libp2p-go-libp2p-crypto" ,go-github-com-libp2p-go-libp2p-crypto)
2251 ("go-github-com-mr-tron-base58" ,go-github-com-mr-tron-base58)
2252 ("go-github-com-multiformats-go-multihash" ,go-github-com-multiformats-go-multihash)
2253 ("go-github-com-btcsuite-btcd-btcec" ,go-github-com-btcsuite-btcd-btcec)
35defe61 2254 ("go-github-com-gogo-protobuf" ,go-github-com-gogo-protobuf)
77d8a917
PN
2255 ("go-github-com-gxed-hashland-keccakpg" ,go-github-com-gxed-hashland-keccakpg)
2256 ("go-github-com-minio-blake2b-simd" ,go-github-com-minio-blake2b-simd)
2257 ("go-github-com-minio-sha256-simd" ,go-github-com-minio-sha256-simd)
2258 ("go-github-com-spaolacci-murmur3" ,go-github-com-spaolacci-murmur3)
561d391b 2259 ("go-golang-org-x-crypto" ,go-golang-org-x-crypto)))
77d8a917
PN
2260 (home-page "https://github.com/libp2p/go-libp2p-metrics")
2261 (synopsis "Connection wrapper for go-libp2p that provides bandwidth metrics")
2262 (description "A connection wrapper for @command{go-libp2p} that provides bandwidth
2263statistics for wrapped connections.")
2264 (license license:expat))))
8cb91281
PN
2265
2266(define-public go-github-com-mitchellh-go-homedir
2267 (let ((commit "ae18d6b8b3205b561c79e8e5f69bff09736185f4")
2268 (revision "0"))
2269 (package
2270 (name "go-github-com-mitchellh-go-homedir")
2271 (version (git-version "1.0.0" revision commit))
2272 (source
2273 (origin
2274 (method git-fetch)
2275 (uri (git-reference
2276 (url "https://github.com/mitchellh/go-homedir.git")
2277 (commit commit)))
2278 (file-name (git-file-name name version))
2279 (sha256
2280 (base32
2281 "0f0z0aa4wivk4z1y503dmnw0k0g0g403dly8i4q263gfshs82sbq"))))
2282 (build-system go-build-system)
2283 (arguments
2284 (quote (#:import-path "github.com/mitchellh/go-homedir"
2285 ;; TODO: Tests fail because it tries to access home.
2286 #:tests? #f)))
2287 (home-page "https://github.com/mitchellh/go-homedir")
2288 (synopsis "Go library for detecting and expanding the user's home directory without cgo")
2289 (description "This is a Go library for detecting the user's home
2290directory without the use of @command{cgo}, so the library can be used in
2291cross-compilation environments.
2292
2293Usage is simple, just call homedir.Dir() to get the home directory for a user,
2294and homedir.Expand() to expand the @command{~} in a path to the home
2295directory.
2296
2297Why not just use @command{os/user}? The built-in @command{os/user} package
2298requires cgo on Darwin systems. This means that any Go code that uses that
2299package cannot cross compile. But 99% of the time the use for
2300@command{os/user} is just to retrieve the home directory, which we can do for
2301the current user without cgo. This library does that, enabling
2302cross-compilation.")
2303 (license license:expat))))
e53121b3
PN
2304
2305(define-public go-github-com-multiformats-go-multiaddr
2306 (let ((commit "fe1c46f8be5af4aff4db286e08839295bd922efb")
2307 (revision "0"))
2308 (package
2309 (name "go-github-com-multiformats-go-multiaddr")
2310 (version (git-version "1.3.0" revision commit))
2311 (source
2312 (origin
2313 (method git-fetch)
2314 (uri (git-reference
2315 (url "https://github.com/multiformats/go-multiaddr.git")
2316 (commit commit)))
2317 (file-name (git-file-name name version))
2318 (sha256
2319 (base32
2320 "0p5f8h098a4yjjmzsgqs7vhx1iqifb8izwg3559cr4h7clkpzznh"))))
2321 (build-system go-build-system)
2322 (arguments
2323 '(#:import-path
2324 "github.com/multiformats/go-multiaddr"))
2325 (native-inputs
2326 `(("go-github-com-multiformats-go-multihash" ,go-github-com-multiformats-go-multihash)
2327 ("go-github-com-gxed-hashland-keccakpg" ,go-github-com-gxed-hashland-keccakpg)
2328 ("go-github-com-minio-blake2b-simd" ,go-github-com-minio-blake2b-simd)
2329 ("go-github-com-minio-sha256-simd" ,go-github-com-minio-sha256-simd)
2330 ("go-github-com-mr-tron-base58" ,go-github-com-mr-tron-base58)
2331 ("go-github-com-spaolacci-murmur3" ,go-github-com-spaolacci-murmur3)
561d391b 2332 ("go-golang-org-x-crypto" ,go-golang-org-x-crypto)))
e53121b3
PN
2333 (home-page "https://github.com/multiformats/go-multiaddr")
2334 (synopsis "Composable and future-proof network addresses")
2335 (description "Multiaddr is a standard way to represent addresses that
2336does the following:
2337
2338@itemize
2339@item Support any standard network protocols.
2340@item Self-describe (include protocols).
2341@item Have a binary packed format.
2342@item Have a nice string representation.
2343@item Encapsulate well.
2344@end itemize\n")
2345 (license license:expat))))
66fb6e29
PN
2346
2347(define-public go-github-com-multiformats-go-multiaddr-net
2348 (let ((commit "1cb9a0e8a6de3c8a10f6cee60d01d793603c4f7e")
2349 (revision "0"))
2350 (package
2351 (name "go-github-com-multiformats-go-multiaddr-net")
2352 (version (git-version "1.6.3" revision commit))
2353 (source
2354 (origin
2355 (method git-fetch)
2356 (uri (git-reference
2357 (url "https://github.com/multiformats/go-multiaddr-net.git")
2358 (commit commit)))
2359 (file-name (git-file-name name version))
2360 (sha256
2361 (base32
2362 "1ypgi47xdz3bh8lh7f8cmk7w3ql9g4izx5l3kzdg9gda1xn5zxq3"))))
2363 (build-system go-build-system)
2364 (arguments
2365 (quote (#:import-path "github.com/multiformats/go-multiaddr-net"
2366 ;; TODO: Tests fail because they try to access the network.
2367 #:tests? #f)))
2368 (native-inputs
2369 `(("go-github-com-multiformats-go-multiaddr" ,go-github-com-multiformats-go-multiaddr)
2370 ("go-github-com-multiformats-go-multihash" ,go-github-com-multiformats-go-multihash)
2371 ("go-github-com-gxed-hashland-keccakpg" ,go-github-com-gxed-hashland-keccakpg)
2372 ("go-github-com-minio-blake2b-simd" ,go-github-com-minio-blake2b-simd)
2373 ("go-github-com-minio-sha256-simd" ,go-github-com-minio-sha256-simd)
2374 ("go-github-com-mr-tron-base58" ,go-github-com-mr-tron-base58)
2375 ("go-github-com-spaolacci-murmur3" ,go-github-com-spaolacci-murmur3)
561d391b 2376 ("go-golang-org-x-crypto" ,go-golang-org-x-crypto)))
66fb6e29
PN
2377 (home-page "https://github.com/multiformats/go-multiaddr-net")
2378 (synopsis "Multiaddress net tools")
2379 (description "This package provides Multiaddr specific versions of
2380common functions in stdlib's @command{net} package. This means wrappers of
2381standard net symbols like @command{net.Dial} and @command{net.Listen}, as well
2382as conversion to and from @command{net.Addr}.")
2383 (license license:expat))))
38d346dc
PN
2384
2385(define-public go-github-com-whyrusleeping-tar-utils
2386 (let ((commit "8c6c8ba81d5c71fd69c0f48dbde4b2fb422b6dfc")
2387 (revision "0"))
2388 (package
2389 (name "go-github-com-whyrusleeping-tar-utils")
2390 (version (git-version "0.0.0" revision commit))
2391 (source
2392 (origin
2393 (method git-fetch)
2394 (uri (git-reference
2395 (url "https://github.com/whyrusleeping/tar-utils.git")
2396 (commit commit)))
2397 (file-name (git-file-name name version))
2398 (sha256
2399 (base32
2400 "14jjdw3yics0k467xsyk388684wdpi0bbx8nqj0y4pqxa0s0in6s"))))
2401 (build-system go-build-system)
2402 (arguments
2403 '(#:import-path
2404 "github.com/whyrusleeping/tar-utils"))
2405 (home-page "https://github.com/whyrusleeping/tar-utils")
2406 (synopsis "Tar utilities extracted from go-ipfs codebase")
2407 (description "Tar utilities extracted from @command{go-ipfs} codebase.")
2408 (license license:expat))))
ad8d4637
PN
2409
2410(define-public go-github-com-cheekybits-is
2411 (let ((commit "68e9c0620927fb5427fda3708222d0edee89eae9")
2412 (revision "0"))
2413 (package
2414 (name "go-github-com-cheekybits-is")
2415 (version (git-version "0.0.0" revision commit))
2416 (source
2417 (origin
2418 (method git-fetch)
2419 (uri (git-reference
2420 (url "https://github.com/cheekybits/is.git")
2421 (commit commit)))
2422 (file-name (git-file-name name version))
2423 (sha256
2424 (base32
2425 "1mkbyzhwq3rby832ikq00nxv3jnckxsm3949wkxd8ya9js2jmg4d"))))
2426 (build-system go-build-system)
2427 (arguments
2428 '(#:import-path "github.com/cheekybits/is"))
2429 (home-page "https://github.com/cheekybits/is")
2430 (synopsis "Mini testing helper for Go")
2431 (description "A mini testing helper for Go.
2432
2433@itemize
2434@item It has a simple interface (@command{is.OK} and @command{is.Equal}).
2435@item It plugs into existing Go toolchain (uses @command{testing.T}).
2436@item It's obvious for newcomers.
2437@item It also gives you @command{is.Panic} and @command{is.PanicWith} helpers
2438- because testing panics is ugly.
2439@end itemize\n")
2440 (license license:expat))))
20f48e4b
PN
2441
2442(define-public go-github-com-sabhiram-go-gitignore
2443 (let ((commit "d3107576ba9425fc1c85f4b3569c4631b805a02e")
2444 (revision "0"))
2445 (package
2446 (name "go-github-com-sabhiram-go-gitignore")
2447 (version (git-version "1.0.2" revision commit))
2448 (source
2449 (origin
2450 (method git-fetch)
2451 (uri (git-reference
2452 (url "https://github.com/sabhiram/go-gitignore.git")
2453 (commit commit)))
2454 (file-name (git-file-name name version))
2455 (sha256
2456 (base32
2457 "1rdwyxgcsiwgmlqnc3k6h300mzlvjc3j21np4yh1h476wc8dvl0l"))))
2458 (build-system go-build-system)
2459 (arguments
2460 '(#:import-path
2461 "github.com/sabhiram/go-gitignore"))
2462 (native-inputs
2463 `(("go-github-com-stretchr-testify" ,go-github-com-stretchr-testify)))
2464 (home-page "https://github.com/sabhiram/go-gitignore")
2465 (synopsis "Gitignore parser for Go")
2466 (description "A @command{.gitignore} parser for Go.")
2467 (license license:expat))))
b5bb0b50
PN
2468
2469(define-public go-github-com-urfave-cli
a8ad05d4
LF
2470 (package
2471 (name "go-github-com-urfave-cli")
5d9515d8 2472 (version "1.22.2")
a8ad05d4
LF
2473 (source
2474 (origin
2475 (method git-fetch)
2476 (uri (git-reference
2477 (url "https://github.com/urfave/cli.git")
2478 (commit (string-append "v" version))))
2479 (file-name (git-file-name name version))
2480 (sha256
2481 (base32
5d9515d8 2482 "10mcnvi5qmn00vpyk6si8gjka7p654wr9hac4zc9w5h3ickhvbdc"))))
a8ad05d4
LF
2483 (build-system go-build-system)
2484 (arguments
2485 '(#:import-path "github.com/urfave/cli"))
5d9515d8
LF
2486 (propagated-inputs
2487 `(("go-github-com-go-md2man" ,go-github-com-go-md2man)))
a8ad05d4
LF
2488 (home-page "https://github.com/urfave/cli")
2489 (synopsis "Simple, fast, and fun package for building command line apps in Go")
2490 (description "@command{cli} is a simple, fast, and fun package for
b5bb0b50
PN
2491building command line apps in Go. The goal is to enable developers to write
2492fast and distributable command line applications in an expressive way.")
a8ad05d4 2493 (license license:expat)))
7bd9020e 2494
2c0bc073
LF
2495(define-public go-github-com-go-md2man
2496 (package
2497 (name "go-github-com-go-md2man")
2498 (version "2.0.0")
2499 (source
2500 (origin
2501 (method git-fetch)
2502 (uri (git-reference
2503 (url "https://github.com/cpuguy83/go-md2man")
2504 (commit (string-append "v" version))))
2505 (file-name (git-file-name name version))
2506 (sha256
2507 (base32
2508 "0r1f7v475dxxgzqci1mxfliwadcrk86ippflx9n411325l4g3ghv"))
2509 (modules '((guix build utils)))
2510 (snippet '(begin
2511 (delete-file-recursively "vendor")
2512 #t))))
2513 (build-system go-build-system)
2514 (arguments
2515 '(#:import-path "github.com/cpuguy83/go-md2man"))
2516 (propagated-inputs
2517 `(("go-github-com-russross-blackfriday" ,go-github-com-russross-blackfriday)))
2518 (home-page "https://github.com/cpuguy83/go-md2man")
2519 (synopsis "Convert markdown into roff")
2520 (description "Go-md2man is a Go program that converts markdown to roff for
2521the purpose of building man pages.")
2522 (license license:expat)))
2523
0ca8bc01
LF
2524(define-public go-github-com-russross-blackfriday
2525 (package
2526 (name "go-github-com-russross-blackfriday")
2527 (version "2.0.1")
2528 (source
2529 (origin
2530 (method git-fetch)
2531 (uri (git-reference
2532 (url "https://github.com/russross/blackfriday")
2533 (commit (string-append "v" version))))
2534 (file-name (git-file-name name version))
2535 (sha256
2536 (base32
2537 "0nlz7isdd4rgnwzs68499hlwicxz34j2k2a0b8jy0y7ycd2bcr5j"))))
2538 (build-system go-build-system)
2539 (arguments
2540 '(#:import-path "github.com/russross/blackfriday"))
2541 (propagated-inputs
2542 `(("go-github-com-shurcool-sanitized-anchor-name"
2543 ,go-github-com-shurcool-sanitized-anchor-name)))
2544 (native-inputs
2545 `(("go-github-com-pmezard-go-difflib" ,go-github-com-pmezard-go-difflib)))
2546 (home-page "https://github.com/russross/blackfriday")
2547 (synopsis "Markdown processor in Go")
2548 (description "Blackfriday is a Markdown processor in Go.")
2549 (license license:bsd-2)))
2550
47a4a6da
LF
2551(define-public go-github-com-shurcool-sanitized-anchor-name
2552 (package
2553 (name "go-github-com-shurcool-sanitized-anchor-name")
2554 (version "1.0.0")
2555 (source
2556 (origin
2557 (method git-fetch)
2558 (uri (git-reference
2559 (url "https://github.com/shurcooL/sanitized_anchor_name")
2560 (commit (string-append "v" version))))
2561 (file-name (git-file-name name version))
2562 (sha256
2563 (base32
2564 "1gv9p2nr46z80dnfjsklc6zxbgk96349sdsxjz05f3z6wb6m5l8f"))))
2565 (build-system go-build-system)
2566 (arguments
2567 '(#:import-path "github.com/shurcooL/sanitized_anchor_name"))
2568 (home-page "https://github.com/shurcooL/sanitized_anchor_name")
2569 (synopsis "Create sanitized anchor names")
2570 (description "This package provides a Go program for creating sanitized
2571anchor names.")
2572 (license license:expat)))
2573
3c06b060
LF
2574(define-public go-github-com-pmezard-go-difflib
2575 (package
2576 (name "go-github-com-pmezard-go-difflib")
2577 (version "1.0.0")
2578 (source (origin
2579 (method git-fetch)
2580 (uri (git-reference
2581 (url "https://github.com/pmezard/go-difflib")
2582 (commit (string-append "v" version))))
2583 (file-name (git-file-name name version))
2584 (sha256
2585 (base32
2586 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw"))))
2587 (build-system go-build-system)
2588 (arguments
2589 '(#:import-path "github.com/pmezard/go-difflib/difflib"
2590 #:unpack-path "github.com/pmezard/go-difflib/"))
2591 (home-page "https://github.com/pmezard/go-difflib")
2592 (synopsis "Go diff implementation")
2593 (description "This package provides unified and context-aware diffs in Go.")
2594 (license license:bsd-3)))
2595
7bd9020e
PN
2596(define-public go-github-com-whyrusleeping-json-filter
2597 (let ((commit "ff25329a9528f01c5175414f16cc0a6a162a5b8b")
2598 (revision "0"))
2599 (package
2600 (name "go-github-com-whyrusleeping-json-filter")
2601 (version (git-version "0.0.0" revision commit))
2602 (source
2603 (origin
2604 (method git-fetch)
2605 (uri (git-reference
2606 (url "https://github.com/whyrusleeping/json-filter.git")
2607 (commit commit)))
2608 (file-name (git-file-name name version))
2609 (sha256
2610 (base32
2611 "0cai0drvx4c8j686l908vpcsz3mw3vxi3ziz94b0f3c5ylpj07j7"))))
2612 (build-system go-build-system)
2613 (arguments
2614 '(#:import-path
2615 "github.com/whyrusleeping/json-filter"))
2616 (home-page "https://github.com/whyrusleeping/json-filter")
2617 (synopsis "Library to query JSON objects marshalled into map[string]interface")
2618 (description "A library to query JSON objects marshalled into
2619@command{map[string]interface{}}.")
2620 (license license:expat))))
38566e97
PN
2621
2622(define-public go-github-com-whyrusleeping-progmeter
2623 (let ((commit "f3e57218a75b913eff88d49a52c1debf9684ea04")
2624 (revision "0"))
2625 (package
2626 (name "go-github-com-whyrusleeping-progmeter")
2627 (version (git-version "0.0.0" revision commit))
2628 (source
2629 (origin
2630 (method git-fetch)
2631 (uri (git-reference
2632 (url "https://github.com/whyrusleeping/progmeter.git")
2633 (commit commit)))
2634 (file-name (git-file-name name version))
2635 (sha256
2636 (base32
2637 "0xs8rz6yhpvj9512c5v3b8dwr2kivywnyyfxzdfbr6fy1xc8zskb"))))
2638 (build-system go-build-system)
2639 (arguments
2640 '(#:import-path
2641 "github.com/whyrusleeping/progmeter"))
2642 (home-page "https://github.com/whyrusleeping/progmeter")
2643 (synopsis "Progress meter for Go")
2644 (description "Progress meter for Go.")
2645 (license license:expat))))
56eb7bd3
PN
2646
2647(define-public go-github-com-whyrusleeping-stump
2648 (let ((commit "206f8f13aae1697a6fc1f4a55799faf955971fc5")
2649 (revision "0"))
2650 (package
2651 (name "go-github-com-whyrusleeping-stump")
2652 (version (git-version "0.0.0" revision commit))
2653 (source
2654 (origin
2655 (method git-fetch)
2656 (uri (git-reference
2657 (url "https://github.com/whyrusleeping/stump.git")
2658 (commit commit)))
2659 (file-name (git-file-name name version))
2660 (sha256
2661 (base32
2662 "1s40qdppjnk8gijk7x6kbviiqz62nz3h6gic2q9cwcmq8r5isw7n"))))
2663 (build-system go-build-system)
2664 (arguments
2665 '(#:import-path "github.com/whyrusleeping/stump"))
2666 (home-page "https://github.com/whyrusleeping/stump")
2667 (synopsis "Very basic logging package for Go")
2668 (description "A simple log library, for when you don't really care to
2669have super fancy logs.")
2670 (license license:expat))))
5b6c3ad0
PN
2671
2672(define-public go-github-com-kr-fs
2673 (let ((commit "1455def202f6e05b95cc7bfc7e8ae67ae5141eba")
2674 (revision "0"))
2675 (package
2676 (name "go-github-com-kr-fs")
2677 (version (git-version "0.1.0" revision commit))
2678 (source
2679 (origin
2680 (method git-fetch)
2681 (uri (git-reference
2682 (url "https://github.com/kr/fs.git")
2683 (commit commit)))
2684 (file-name (git-file-name name version))
2685 (sha256
2686 (base32
2687 "11zg176x9hr9q7fsk95r6q0wf214gg4czy02slax4x56n79g6a7q"))))
2688 (build-system go-build-system)
2689 (arguments
2690 '(#:import-path "github.com/kr/fs"))
2691 (home-page "https://github.com/kr/fs")
52beae7b
TGR
2692 (synopsis "File-system-related functions for Go")
2693 (description
2694 "The fs package provides file-system-related Go functions.")
5b6c3ad0 2695 (license license:bsd-3))))
bc58bb9b
LF
2696
2697(define-public go-github-com-direnv-go-dotenv
2698 (let ((commit "4cce6d1a66f7bc8dc730eab85cab6af1b801abed")
2699 (revision "0"))
2700 (package
2701 (name "go-github-com-direnv-go-dotenv")
2702 (version (git-version "0.0.0" revision commit))
2703 (source
2704 (origin
2705 (method git-fetch)
2706 (uri (git-reference
2707 (url "https://github.com/direnv/go-dotenv")
2708 (commit commit)))
2709 (file-name (git-file-name name version))
2710 (sha256
2711 (base32
2712 "00wn4fc2lma0csf6ryvlc6k9jbpbifm4n7i3kkd2xrfw5qlm29b6"))))
2713 (build-system go-build-system)
2714 (arguments
2715 '(#:import-path "github.com/direnv/go-dotenv"))
2716 (home-page "https://github.com/direnv/go-dotenv")
2717 (synopsis "Go dotenv parsing library")
2718 (description "This package provides a library for parsing the dotenv
2719format in Go.")
2720 (license license:expat))))
56f610f5 2721
aa413ff8
LF
2722(define-public go-github-com-kr-pretty
2723 (package
2724 (name "go-github-com-kr-pretty")
2725 (version "0.1.0")
2726 (source (origin
2727 (method git-fetch)
2728 (uri (git-reference
2729 (url "https://github.com/kr/pretty.git")
2730 (commit (string-append "v" version))))
2731 (file-name (git-file-name name version))
2732 (sha256
2733 (base32
2734 "18m4pwg2abd0j9cn5v3k2ksk9ig4vlwxmlw9rrglanziv9l967qp"))))
2735 (build-system go-build-system)
2736 (propagated-inputs
2737 `(("go-github-com-kr-text" ,go-github-com-kr-text)))
2738 (arguments
2739 '(#:import-path "github.com/kr/pretty"))
2740 (synopsis "A pretty printer for Go values")
2741 (description "This package provides a pretty printer for Go values.")
2742 (home-page "https://github.com/kr/pretty")
2743 (license license:expat)))
2744
56f610f5
LF
2745(define-public go-github-com-kr-text
2746 (package
2747 (name "go-github-com-kr-text")
2748 (version "0.1.0")
2749 (source (origin
2750 (method git-fetch)
2751 (uri (git-reference
2752 (url "https://github.com/kr/text.git")
2753 (commit (string-append "v" version))))
2754 (file-name (git-file-name name version))
2755 (sha256
2756 (base32
2757 "1gm5bsl01apvc84bw06hasawyqm4q84vx1pm32wr9jnd7a8vjgj1"))))
2758 (build-system go-build-system)
2759 (arguments
2760 '(#:import-path "github.com/kr/text"))
2761 (synopsis "Text formatting in Go")
2762 (description "This package provides a text formatting functions in Go.")
2763 (home-page "https://github.com/kr/text")
2764 (license license:expat)))
4ddf067f 2765
be42a38a
BL
2766(define-public go-golang-org-sql-mock
2767 (let ((commit "e98392b8111b45f8126e00af035a0dd95dc12e8b")
2768 (version "1.3.3")
2769 (revision "1"))
2770 (package
2771 (name "go-golang-org-sql-mock")
2772 (version (git-version version revision commit))
2773 (source (origin
2774 (method git-fetch)
2775 (uri (git-reference
2776 (url "https://github.com/DATA-DOG/go-sqlmock")
2777 (commit commit)))
2778 (file-name (git-file-name name version))
2779 (sha256
2780 (base32
2781 "033vv29g2wf6fd757ajfmha30bqin3b07377037zkl051mk6mghs"))))
2782 (build-system go-build-system)
2783 (arguments
2784 '(#:import-path "github.com/DATA-DOG/go-sqlmock"))
2785 (synopsis "Mock library implementing @code{sql/driver}")
2786 (description "This library simulates SQL-driver behavior in tests
2787without requiring a real database connection.")
2788 (home-page "https://github.com/DATA-DOG/go-sqlmock")
2789 (license license:expat))))
2790
a881a087
BL
2791(define-public go-golang-org-colorful
2792 (package
2793 (name "go-golang-org-colorful")
2794 (version "1.0.2")
2795 (source (origin
2796 (method git-fetch)
2797 (uri (git-reference
2798 (url "https://github.com/lucasb-eyer/go-colorful")
2799 (commit (string-append "v" version))))
2800 (file-name (git-file-name name version))
2801 (sha256
2802 (base32
2803 "0fig06880bvk1l92j4127v4x9sar4ds7ga8959gxxghb2w70b7l2"))))
2804 (build-system go-build-system)
2805 (arguments
2806 '(#:import-path "github.com/lucasb-eyer/go-colorful"))
2807 (native-inputs
2808 `(("go-golang-org-sql-mock" ,go-golang-org-sql-mock)))
2809 (synopsis "Convert between colorspaces and generate colors")
2810 (description "This package implements Go's @code{color.Color} interface
2811and provides a means of converting colors stored as RGB to various
2812colorspaces.")
2813 (home-page "https://github.com/lucasb-eyer/go-colorful")
2814 (license license:expat)))
2815
42a0cfee
BL
2816(define-public go-github-com-gdamore-encoding
2817 (package
2818 (name "go-github-com-gdamore-encoding")
2819 (version "1.0.0")
2820 (source
2821 (origin
2822 (method git-fetch)
2823 (uri (git-reference
2824 (url "https://github.com/gdamore/encoding")
2825 (commit (string-append "v" version))))
2826 (file-name (git-file-name name version))
2827 (sha256
2828 (base32
2829 "1vmm5zll92i2fm4ajqx0gyx0p9j36496x5nabi3y0x7h0inv0pk9"))))
2830 (build-system go-build-system)
2831 (arguments
2832 '(#:import-path "github.com/gdamore/encoding"))
2833 (inputs
561d391b 2834 `(("go-golang-org-x-text" ,go-golang-org-x-text)))
42a0cfee
BL
2835 (home-page "https://github.com/gdamore/encoding")
2836 (synopsis "Provide encodings missing from Go")
2837 (description "This package provides useful encodings not included in the
2838standard @code{Text} package, including some for dealing with I/O streams from
2839non-UTF-friendly sources.")
2840 (license license:expat)))
2841
a6689b99
BL
2842(define-public go-github-com-gdamore-tcell
2843 (let ((commit "aaadc574a6ed8dc3abe56036ca130dcee1ee6b6e")
2844 (version "1.1.2")
2845 (revision "1"))
2846 (package
2847 (name "go-github-com-gdamore-tcell")
2848 (version (git-version version revision commit))
2849 (source
2850 (origin
2851 (method git-fetch)
2852 (uri (git-reference
2853 (url "https://github.com/gdamore/tcell")
2854 (commit commit)))
2855 (file-name (git-file-name name version))
2856 (sha256
2857 (base32
2858 "0il2nnxp2cqiy73m49215dnf9in3vd25ji8qxbmq87c5qy7i1q9d"))))
2859 (build-system go-build-system)
2860 (arguments
2861 `(#:import-path "github.com/gdamore/tcell"
2862 #:phases
2863 (modify-phases %standard-phases
2864 (add-before 'reset-gzip-timestamps 'make-files-writable
2865 (lambda* (#:key outputs #:allow-other-keys)
2866 ;; Make sure .gz files are writable so that the
2867 ;; 'reset-gzip-timestamps' phase can do its work.
2868 (let ((out (assoc-ref outputs "out")))
2869 (for-each make-file-writable
2870 (find-files out "\\.gz$"))
2871 #t))))))
2872 (inputs
2873 `(("go-github.com-mattn-go-runewidth" ,go-github.com-mattn-go-runewidth)
2874 ("go-golang-org-colorful" ,go-golang-org-colorful)
561d391b 2875 ("go-golang-org-x-text" ,go-golang-org-x-text)
a6689b99
BL
2876 ("go-github-com-gdamore-encoding" ,go-github-com-gdamore-encoding)))
2877 (home-page "https://github.com/gdamore/tcell")
2878 (synopsis "Provide a cell-based view for text terminals")
2879 (description "This package includes a full parser and expander for
2880terminfo capability strings to avoid hard-coding escape strings for
2881formatting. It also favors portability, and includes support for all POSIX
2882systems.")
2883 (license license:expat))))
2884
f8157350
BL
2885(define-public go-github-com-mattn-go-shellwords
2886 (let ((commit "2444a32a19f450fabaa0bb3e96a703f15d9a97d2")
2887 (version "1.0.5")
2888 (revision "1"))
2889 (package
2890 (name "go-github-com-mattn-go-shellwords")
2891 (version (git-version version revision commit))
2892 (source
2893 (origin
2894 (method git-fetch)
2895 (uri (git-reference
2896 (url "https://github.com/mattn/go-shellwords")
2897 (commit commit)))
2898 (file-name (git-file-name name version))
2899 (sha256
2900 (base32
2901 "08zcgr1az1n8zaxzwdd205j86hczgyc52nxfnw5avpw7rrkf7v0d"))))
2902 (build-system go-build-system)
2903 (arguments
2904 `(#:import-path "github.com/mattn/go-shellwords"
2905 ;; TODO: can't make homeless-shelter:
2906 ;; go: disabling cache (/homeless-shelter/.cache/go-build) due to
2907 ;; initialization failure: mkdir /homeless-shelter: permission denied
2908
2909 ;; This doesn't seem to work:
2910
2911 ;; #:phases
2912 ;; (modify-phases %standard-phases
2913 ;; (replace 'check
2914 ;; (lambda* (#:key import-path #:allow-other-keys)
2915 ;; (setenv "HOME" "/tmp")
2916 ;; (invoke "go" "test" import-path))))
2917
2918 ;; TODO: There are also a couple of tests that have stymied Debian in
2919 ;; the past. They seem to work when run locally.
2920
2921 #:tests? #f
2922 ))
2923 (home-page "https://github.com/mattn/go-shellwords")
2924 (synopsis "Parse lines into shell words")
2925 (description "This package parses text into shell arguments. Based on
2926the @code{cpan} module @code{Parse::CommandLine}.")
2927 (license license:expat))))
2928
4ddf067f
GB
2929(define-public go-github-com-burntsushi-locker
2930 (let ((commit "a6e239ea1c69bff1cfdb20c4b73dadf52f784b6a")
2931 (revision "0"))
2932 (package
2933 (name "go-github-com-burntsushi-locker")
2934 (version (git-version "0.0.0" revision commit))
2935 (source
2936 (origin
2937 (method git-fetch)
2938 (uri (git-reference
2939 (url "https://github.com/BurntSushi/locker")
2940 (commit commit)))
2941 (file-name (git-file-name name version))
2942 (sha256
2943 (base32
2944 "1xak4aync4klswq5217qvw191asgla51jr42y94vp109lirm5dzg"))))
2945 (build-system go-build-system)
2946 (arguments
2947 '(#:import-path "github.com/BurntSushi/locker"))
2948 (home-page "https://github.com/BurntSushi/locker")
2949 (synopsis "Manage named ReadWrite mutexes in Go")
2950 (description "Golang package for conveniently using named read/write
2951locks. These appear to be especially useful for synchronizing access to
2952session based information in web applications.
2953
2954The common use case is to use the package level functions, which use a package
2955level set of locks (safe to use from multiple goroutines
2956simultaneously). However, you may also create a new separate set of locks
2957test.
2958
2959All locks are implemented with read-write mutexes. To use them like a regular
2960mutex, simply ignore the RLock/RUnlock functions.")
2961 (license license:unlicense))))
a3b1dc49
LF
2962
2963(define-public go-github-com-marten-seemann-qtls
2964 (package
2965 (name "go-github-com-marten-seemann-qtls")
199f1be3 2966 (version "0.3.2")
a3b1dc49
LF
2967 (source (origin
2968 (method git-fetch)
2969 (uri (git-reference
2970 (url "https://github.com/marten-seemann/qtls")
2971 (commit (string-append "v" version))))
2972 (file-name (git-file-name name version))
2973 (sha256
2974 (base32
199f1be3 2975 "1mdymj66qrqy80pfkwy9s9z9ifkg251whngw5lim09zm90wv2q7a"))))
a3b1dc49
LF
2976 (build-system go-build-system)
2977 (arguments
2978 '(#:import-path "github.com/marten-seemann/qtls"
2979 ;; The test suite requires networking.
2980 #:tests? #f))
2981 (propagated-inputs
2982 `(("go-golang-org-x-crypto" ,go-golang-org-x-crypto)))
2983 (synopsis "TLS 1.3 with QUIC in Go")
2984 (description "This package provides @code{qtls}, a QUIC-capable variant of
2985the Go standard library's TLS 1.3 implementation.")
2986 (home-page "https://github.com/marten-seemann/qtls")
2987 (license license:bsd-3)))
8201afdf
LF
2988
2989(define-public go-github-com-cheekybits-genny
2990 (package
2991 (name "go-github-com-cheekybits-genny")
2992 (version "1.0.0")
2993 (source (origin
2994 (method git-fetch)
2995 (uri (git-reference
2996 (url "https://github.com/cheekybits/genny")
2997 (commit (string-append "v" version))))
2998 (file-name (git-file-name name version))
2999 (sha256
3000 (base32
3001 "1pcir5ic86713aqa51581rfb67rgc3m0c72ddjfcp3yakv9vyq87"))))
3002 (build-system go-build-system)
3003 (arguments
3004 '(#:import-path "github.com/cheekybits/genny"))
3005 (propagated-inputs
3006 `(("go-golang-org-x-tools" ,go-golang-org-x-tools)))
3007 (synopsis "Generics for Go")
3008 (description "This package provides @code{genny}, a Go language
3009implementation of generics.")
3010 (home-page "https://github.com/cheekybits/genny/")
3011 (license license:expat)))
6d766bec
LF
3012
3013(define-public go-github-com-lucas-clemente-quic-go
3014 (package
3015 (name "go-github-com-lucas-clemente-quic-go")
05b8096d 3016 (version "0.12.1")
6d766bec
LF
3017 (source (origin
3018 (method git-fetch)
3019 (uri (git-reference
3020 (url "https://github.com/lucas-clemente/quic-go")
3021 (commit (string-append "v" version))))
3022 (file-name (git-file-name name version))
3023 (sha256
3024 (base32
05b8096d 3025 "156nhq4dvw7mr08j952248v81q7702phbn4mp228319sahnbv65h"))))
6d766bec
LF
3026 (build-system go-build-system)
3027 (arguments
3028 '(#:import-path "github.com/lucas-clemente/quic-go"
3029 ;; XXX More packages required...
3030 #:tests? #f))
3031 (propagated-inputs
3032 `(("go-golang-org-x-crypto" ,go-golang-org-x-crypto)
3033 ("go-github-com-cheekybits-genny" ,go-github-com-cheekybits-genny)
05b8096d
LF
3034 ("go-github-com-marten-seemann-qtls" ,go-github-com-marten-seemann-qtls)
3035 ("go-github-com-golang-protobuf-proto" ,go-github-com-golang-protobuf-proto)))
6d766bec
LF
3036 (synopsis "QUIC in Go")
3037 (description "This package provides a Go language implementation of the QUIC
3038network protocol.")
3039 (home-page "https://github.com/lucas-clemente/quic-go")
3040 (license license:expat)))
2da5275f
LF
3041
3042(define-public go-github-com-pkg-errors
726727e1
LF
3043 (package
3044 (name "go-github-com-pkg-errors")
3045 (version "0.9.0")
3046 (source (origin
3047 (method git-fetch)
3048 (uri (git-reference
3049 (url "https://github.com/pkg/errors.git")
3050 (commit (string-append "v" version))))
3051 (file-name (git-file-name name version))
3052 (sha256
3053 (base32
3054 "1hlivqlcnm9wrj0v7h43gamw7mvg6svz9sm31fx28zn4ll25ablh"))))
3055 (build-system go-build-system)
3056 (arguments
3057 `(#:import-path "github.com/pkg/errors"))
3058 (synopsis "Go error handling primitives")
3059 (description "This package provides @code{error}, which offers simple
2da5275f 3060error handling primitives in Go.")
726727e1
LF
3061 (home-page "https://github.com/pkg/errors")
3062 (license license:bsd-2)))
d0ced446
LF
3063
3064(define-public go-github-com-maruel-panicparse
3065 (package
3066 (name "go-github-com-maruel-panicparse")
e7189e0b 3067 (version "1.3.0")
d0ced446
LF
3068 (source (origin
3069 (method git-fetch)
3070 (uri (git-reference
3071 (url "https://github.com/maruel/panicparse")
3072 (commit (string-append "v" version))))
3073 (file-name (git-file-name name version))
3074 (sha256
3075 (base32
e7189e0b 3076 "13qkn7f64yln8jdmma37h6ra4c7anxkp3vfgvfyb6lb07dpr1ibq"))))
d0ced446
LF
3077 (build-system go-build-system)
3078 (arguments
3079 '(#:import-path "github.com/maruel/panicparse"))
3080 (synopsis "Toolkit for parsing Go stack traces")
3081 (description "This package provides a toolkit for parsing Go language panic
3082stack traces. It simplifies the traces to make salient information more visible
3083and aid debugging.")
3084 (home-page "https://github.com/maruel/panicparse")
3085 (license license:asl2.0)))
e30bdd49
AI
3086
3087(define-public go-github-com-robfig-cron
3088 (package
3089 (name "go-github-com-robfig-cron")
3090 (version "3.0.0")
3091 (source
3092 (origin
3093 (method git-fetch)
3094 (uri (git-reference
3095 (url "https://github.com/robfig/cron")
3096 (commit (string-append "v" version))))
3097 (file-name (git-file-name name version))
3098 (sha256
3099 (base32
3100 "0bvq5gxkhyj21lq32nma23i4dpwp7bswnp2yks6372ilkcyisx2z"))))
3101 (build-system go-build-system)
3102 (arguments
3103 `(#:import-path "github.com/robfig/cron"))
3104 (home-page "https://godoc.org/github.com/robfig/cron")
3105 (synopsis "Cron library for Go")
3106 (description "This package provides a cron library for Go. It implements
3107a cron spec parser and job runner.")
3108 (license license:expat)))
9a2f2334
LF
3109
3110(define-public go-github-com-shirou-gopsutil
3111 (let ((commit "47ef3260b6bf6ead847e7c8fc4101b33c365e399")
3112 (revision "0"))
3113 (package
3114 (name "go-github-com-shirou-gopsutil")
3115 (version (git-version "v2.19.7" revision commit))
3116 (source (origin
3117 (method git-fetch)
3118 (uri (git-reference
3119 (url "https://github.com/shirou/gopsutil")
3120 (commit commit))) ; XXX
f1d4d79f 3121 (file-name (git-file-name name version))
9a2f2334
LF
3122 (sha256
3123 (base32
3124 "0x1g4r32q4201nr2b754xnrrndmwsrhfr7zg37spya86qrmijnws"))))
3125 (build-system go-build-system)
3126 (arguments
3127 '(#:import-path "github.com/shirou/gopsutil"))
3128 (synopsis "Process and system monitoring in Go")
3129 (description "This package provides a library for retrieving information
3130on running processes and system utilization (CPU, memory, disks, network,
3131sensors).")
3132 (home-page "https://github.com/shirou/gopsutil")
3133 (license license:bsd-3))))
07f7bf36
DM
3134
3135(define-public go-github-com-fatih-color
3136 (package
3137 (name "go-github-com-fatih-color")
3138 (version "1.8.0")
3139 (source (origin
3140 (method git-fetch)
3141 (uri (git-reference
3142 (url "https://github.com/fatih/color.git")
3143 (commit (string-append "v" version))))
3144 (file-name (git-file-name name version))
3145 (sha256
3146 (base32
3147 "1zc0zlilf03h121f9jqq3ar0hfm7706547zysxp2qxbm920pz7h0"))))
3148 (build-system go-build-system)
3149 (arguments
3150 '(#:import-path "github.com/fatih/color"))
3151 (synopsis "Print colored text in Go")
3152 (description "This package provides an ANSI color package to output
3153colorized or SGR defined output to the standard output.")
3154 (home-page "https://godoc.org/github.com/fatih/color")
3155 (license license:expat)))
ee46bc59
DM
3156
3157(define-public go-github-com-google-go-cmp-cmp
3158 (package
3159 (name "go-github-com-google-go-cmp-cmp")
3160 (version "0.3.1")
3161 (source (origin
3162 (method git-fetch)
3163 (uri (git-reference
3164 (url "https://github.com/google/go-cmp.git")
3165 (commit (string-append "v" version))))
3166 (file-name (git-file-name name version))
3167 (sha256
3168 (base32
3169 "1caw49i0plkjxir7kdf5qhwls3krqwfmi7g4h392rdfwi3kfahx1"))))
3170 (build-system go-build-system)
3171 (arguments
3172 '(#:import-path "github.com/google/go-cmp/cmp"
3173 #:unpack-path "github.com/google/go-cmp"))
3174 (synopsis "Determine equality of values in Go")
3175 (description "This package provides a more powerful and safer
3176alternative to @code{reflect.DeepEqual} for comparing whether two values
3177are semantically equal in Go (for writing tests).")
3178 (home-page "https://godoc.org/github.com/google/go-cmp/cmp")
3179 (license license:asl2.0)))
cb2555e2
DM
3180
3181(define-public go-golang.org-x-sync-errgroup
3182 (let ((commit "cd5d95a43a6e21273425c7ae415d3df9ea832eeb")
3183 (revision "0"))
3184 (package
3185 (name "go-golang.org-x-sync-errgroup")
3186 (version (git-version "0.0.0" revision commit))
3187 (source (origin
3188 (method git-fetch)
3189 (uri (git-reference
3190 (url "https://go.googlesource.com/sync")
3191 (commit commit)))
3192 (file-name (git-file-name name version))
3193 (sha256
3194 (base32
3195 "1nqkyz2y1qvqcma52ijh02s8aiqmkfb95j08f6zcjhbga3ds6hds"))))
3196 (build-system go-build-system)
3197 (arguments
3198 '(#:import-path "golang.org/x/sync/errgroup"
3199 #:unpack-path "golang.org/x/sync"))
5fb3c002 3200 (synopsis "Synchronization, error propagation, and Context cancellation
cb2555e2
DM
3201for groups of goroutines working on subtasks of a common task.")
3202 (description "This package provides synchronization, error propagation,
3203and Context cancelation for groups of goroutines working on subtasks of a
3204common task.")
3205 (home-page "https://godoc.org/golang.org/x/sync/errgroup")
3206 (license license:bsd-3))))
9d64d150 3207
90bce159
DM
3208(define (go-gotest-tools-source version sha256-base32-hash)
3209 (origin
3210 (method git-fetch)
3211 (uri (git-reference
3212 (url "https://github.com/gotestyourself/gotest.tools.git")
3213 (commit (string-append "v" version))))
3214 (file-name (git-file-name "go-gotest-tools" version))
3215 (sha256
3216 (base32 sha256-base32-hash))))
3217
2d1232e0
DM
3218;; Note that version 3.0.0 is incompatible to 2.3.0.
3219;; See also <https://github.com/gotestyourself/gotest.tools/issues/166>.
944f370b 3220(define (go-gotest-tools-package suffix)
9d64d150 3221 (package
944f370b
DM
3222 (name (string-append "go-gotest-tools-"
3223 (string-replace-substring suffix "/" "-")))
3224 (version "2.3.0")
90bce159
DM
3225 (source
3226 (go-gotest-tools-source version
944f370b 3227 "0071rjxp4xzcr3vprkaj1hdk35a3v45bx8v0ipk16wwc5hx84i2i"))
9d64d150
DM
3228 (build-system go-build-system)
3229 (arguments
944f370b
DM
3230 `(#:import-path ,(string-append "gotest.tools/" suffix)
3231 #:unpack-path "gotest.tools"))
3232 (synopsis "@code{gotest-tools} part")
3233 (description "This package provides a part of @code{gotest-tools}.")
3234 (home-page "https://github.com/gotestyourself/gotest.tools")
3235 (license license:asl2.0)))
3236
d19e096a
DM
3237(define-public go-gotest-tools-internal-format
3238 (package (inherit (go-gotest-tools-package "internal/format"))
3239 (native-inputs
3240 `(("go-github-com-pkg-errors" ,go-github-com-pkg-errors)
3241 ("go-github-com-google-go-cmp-cmp"
3242 ,go-github-com-google-go-cmp-cmp)))
3243 (synopsis "Formats messages for use with gotest-tools")
3244 (description "This package provides a way to format messages for use
3245with gotest-tools.")))
3246
67d84852
DM
3247(define-public go-gotest-tools-internal-difflib
3248 (package (inherit (go-gotest-tools-package "internal/difflib"))
3249 (synopsis "Differences for use with gotest-tools")
3250 (description "This package computes differences for use
3251with gotest-tools.")))
3252
1e18d073
DM
3253(define-public go-gotest-tools-internal-source
3254 (package (inherit (go-gotest-tools-package "internal/source"))
3255 (native-inputs
3256 `(("go-github-com-pkg-errors" ,go-github-com-pkg-errors)
3257 ("go-github-com-google-go-cmp-cmp" ,go-github-com-google-go-cmp-cmp)))
3258 (synopsis "Source code AST formatters for gotest-tools")
3259 (description "This package provides source code AST formatters for
3260gotest-tools.")))
3261
944f370b
DM
3262(define-public go-gotest-tools-assert
3263 (package (inherit (go-gotest-tools-package "assert"))
3264 (name "go-gotest-tools-assert")
3265 (arguments
3266 `(#:tests? #f ; Test failure concerning message formatting (FIXME)
3267 #:import-path "gotest.tools/assert"
3268 #:unpack-path "gotest.tools"))
3269 ;(propagated-inputs
3270 ; `(("go-gotest-tools-internal-format" ,go-gotest-tools-internal-format)))
9d64d150
DM
3271 (native-inputs
3272 `(("go-github-com-pkg-errors" ,go-github-com-pkg-errors)
3273 ("go-github-com-google-go-cmp-cmp"
3274 ,go-github-com-google-go-cmp-cmp)))
3275 (synopsis "Compare values and fail a test when a comparison fails")
3276 (description "This package provides a way to compare values and fail a
3277test when a comparison fails.")
3278 (home-page "https://github.com/gotestyourself/gotest.tools")
3279 (license license:asl2.0)))
639371c6
DM
3280
3281(define-public gotestsum
3282 (package
3283 (name "gotestsum")
3284 (version "0.4.0")
3285 (source (origin
3286 (method git-fetch)
3287 (uri (git-reference
3288 (url "https://github.com/gotestyourself/gotestsum.git")
3289 (commit (string-append "v" version))))
3290 (file-name (git-file-name name version))
3291 (sha256
3292 (base32
3293 "0y71qr3ss3hgc8c7nmvpwk946xy1jc5d8whsv6y77wb24ncla7n0"))))
3294 (build-system go-build-system)
3295 (arguments
3296 '(#:import-path "gotest.tools/gotestsum"))
3297 (native-inputs
3298 `(("go-github-com-fatih-color" ,go-github-com-fatih-color)
3299 ("go-golang.org-x-sync-errgroup" ,go-golang.org-x-sync-errgroup)
3300 ("go-github-com-pkg-errors" ,go-github-com-pkg-errors)
3301 ("go-github-com-sirupsen-logrus"
3302 ,go-github-com-sirupsen-logrus)
3303 ("go-github-com-spf13-pflag" ,go-github-com-spf13-pflag)
3304 ("go-github-com-jonboulle-clockwork"
3305 ,go-github-com-jonboulle-clockwork)
3306 ("go-golang-org-x-crypto" ,go-golang-org-x-crypto)
3307 ("go-gotest-tools-assert" ,go-gotest-tools-assert)
d78178fa
DM
3308 ("go-github-com-google-go-cmp-cmp"
3309 ,go-github-com-google-go-cmp-cmp)
3310 ;; TODO: This would be better as a propagated-input of
3311 ;; go-gotest-tools-assert, but that does not work for
3312 ;; some reason.
3313 ("go-gotest-tools-internal-format"
3314 ,go-gotest-tools-internal-format)
3315 ("go-gotest-tools-internal-difflib"
3316 ,go-gotest-tools-internal-difflib)
3317 ("go-gotest-tools-internal-source"
3318 ,go-gotest-tools-internal-source)
639371c6
DM
3319 ("go-github-com-google-go-cmp-cmp"
3320 ,go-github-com-google-go-cmp-cmp)))
3321 (synopsis "Go test runner with output optimized for humans")
3322 (description "This package provides a @code{go test} runner with output
3323optimized for humans, JUnit XML for CI integration, and a summary of the
3324test results.")
3325 (home-page "https://github.com/gotestyourself/gotestsum")
3326 (license license:asl2.0)))
a726d91d
LF
3327
3328(define-public go-github-com-golang-protobuf-proto
3329 (package
3330 (name "go-github-com-golang-protobuf-proto")
3331 (version "1.3.1")
3332 (source (origin
3333 (method git-fetch)
3334 (uri (git-reference
3335 (url "https://github.com/golang/protobuf.git")
3336 (commit (string-append "v" version))))
3337 (file-name (git-file-name name version))
3338 (sha256
3339 (base32
3340 "15am4s4646qy6iv0g3kkqq52rzykqjhm4bf08dk0fy2r58knpsyl"))))
3341 (build-system go-build-system)
3342 (arguments
3343 '(#:import-path "github.com/golang/protobuf/proto"
3344 #:unpack-path "github.com/golang/protobuf"
3345 ;; Requires unpackaged golang.org/x/sync/errgroup
3346 #:tests? #f))
3347 (synopsis "Go support for Protocol Buffers")
3348 (description "This package provides Go support for the Protocol Buffers
3349data serialization format.")
3350 (home-page "https://github.com/golang/protobuf")
3351 (license license:bsd-3)))